/* ARORA MÜŞTERİ HİZMETLERİ - GÜNCELLENMİŞ CSS v6 */
/* Tasarım: Güven veren, modern ve cazibeli */

/* TEMEL AYARLAR */
:root {
    --primary-color: #d32f2f; /* Ana kırmızı - Güven ve enerji */
    --primary-dark: #b71c1c;
    --secondary-color: #1976d2; /* Mavi - Güvenilirlik */
    --accent-color: #ff9800; /* Turuncu - Dikkat çekici */
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --gray-color: #757575;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --whatsapp: #25D366;
    --phone: #2196F3;
    --website: #4CAF50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--gray-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.highlight {
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* HEADER & NAVBAR - GÜNCELLENDİ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 80px;
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    height: 100%;
    cursor: pointer;
}

.logo img {
    height: 100%;
    max-height: 50px;
    margin-right: 10px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-menu a i {
    margin-right: 8px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* HERO BÖLÜMÜ */
.hero {
    padding-top: 120px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--gray-color);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    max-height: 350px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
    object-fit: contain;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* NASIL YARDIMCI OLABİLİRİZ BÖLÜMÜ - GÜNCELLENMİŞ */
.help-section {
    background-color: var(--light-color);
}

.help-content {
    max-width: 900px;
    margin: 0 auto;
}

.selection-panel {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.selection-step {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--light-gray);
}

.selection-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-title {
    color: var(--dark-color);
    margin-bottom: 30px;
    font-size: 1.6rem;
    text-align: center;
}

.select-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 600px;
}

.select-wrapper.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-select {
    width: 100%;
    padding: 20px 30px;
    font-size: 1.3rem;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    background-color: var(--white);
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23d32f2f' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 30px center;
    background-size: 24px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.15);
}

.location-select:hover {
    border-color: var(--primary-color);
}

.result-panel {
    text-align: center;
    padding-top: 40px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.location-title {
    color: var(--dark-color);
    margin-bottom: 50px;
    font-size: 2rem;
    text-align: center;
    padding: 0 20px;
    line-height: 1.4;
    font-weight: 700;
}

.contact-options {
    margin-top: 40px;
}

.contact-options h4 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
}

.contact-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.oval-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 180px;
    border-radius: 90px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.oval-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 90px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.oval-btn:hover::before {
    transform: scale(1);
}

.oval-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.oval-btn i {
    font-size: 3.2rem;
    margin-bottom: 20px;
    z-index: 1;
}

.oval-btn span {
    font-weight: 600;
    font-size: 1.3rem;
    z-index: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.phone-btn {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.website-btn {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

/* HAKKIMIZDA BÖLÜMÜ */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px 15px;
    border-radius: 8px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray-color);
}

/* HİZMETLER BÖLÜMÜ */
.services {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* İLETİŞİM BÖLÜMÜ - GÜNCELLENDİ */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-desc {
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.popular-cities {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.popular-cities h3 {
    text-align: center;
    margin-bottom: 30px;
}

.cities-table-container {
    overflow-x: auto;
}

.cities-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cities-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border: none;
}

.cities-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.cities-table tr:hover td {
    background-color: rgba(211, 47, 47, 0.05);
}

.city-number {
    width: 60px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.city-name-cell {
    font-weight: 600;
    color: var(--dark-color);
}

.city-district-cell {
    color: var(--gray-color);
}

.city-action-cell {
    text-align: center;
}

.select-city-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.select-city-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* POPÜLER ŞEHİRLER İÇİN EK STİLLER */
.popular-city {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

.count-indicator {
    font-size: 0.8rem;
    color: #ff9800;
    font-weight: 600;
    margin-left: 5px;
}

/* BASİTLEŞTİRİLMİŞ SAYFALAMA */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--light-gray);
    padding: 10px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--light-gray);
}

.pagination-btn:disabled:hover {
    transform: none;
    background-color: var(--light-gray);
    color: var(--dark-color);
    border-color: var(--light-gray);
}

.pagination-info {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 600;
}

.pagination-dots {
    display: inline-block;
    padding: 0 5px;
    color: var(--gray-color);
}

/* FOOTER */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-logo .logo {
    color: var(--white);
    margin-bottom: 20px;
    align-items: flex-start;
    cursor: pointer;
}

.footer-logo img {
    height: 70px;
    width: 70px;
    margin-right: 15px;
    object-fit: contain;
}

.footer-description {
    color: #aaa;
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #777;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

/* RESPONSIVE TASARIM */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .header {
        height: auto;
        padding: 15px 0;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    /* Seçim bölümü responsive */
    .selection-panel {
        padding: 50px 30px;
    }
    
    .location-select {
        padding: 18px 25px;
        font-size: 1.2rem;
    }
    
    .oval-btn {
        min-width: 160px;
        height: 160px;
        border-radius: 80px;
    }
    
    .oval-btn i {
        font-size: 2.8rem;
    }
    
    .location-title {
        font-size: 1.8rem;
    }
    
    .footer-logo img {
        height: 60px;
        width: 60px;
    }
    
    /* Pagination responsive */
    .pagination-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo .logo {
        justify-content: center;
    }
    
    .footer-logo img {
        height: 70px;
        width: 70px;
    }
    
    /* Seçim bölümü responsive */
    .selection-panel {
        padding: 40px 20px;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .location-select {
        padding: 16px 20px;
        font-size: 1.1rem;
        background-position: right 20px center;
    }
    
    .contact-buttons-container {
        gap: 30px;
    }
    
    .oval-btn {
        min-width: 140px;
        height: 140px;
        border-radius: 70px;
    }
    
    .oval-btn i {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    
    .oval-btn span {
        font-size: 1.1rem;
    }
    
    .location-title {
        font-size: 1.6rem;
    }
    
    .pagination {
        gap: 10px;
    }
    
    .pagination-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .pagination-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .logo img {
        max-height: 30px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Seçim bölümü responsive */
    .selection-panel {
        padding: 30px 15px;
    }
    
    .selection-step {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .step-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .location-select {
        padding: 14px 15px;
        font-size: 1rem;
        background-size: 20px;
    }
    
    .contact-buttons-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .oval-btn {
        width: 100%;
        max-width: 280px;
        height: 130px;
        border-radius: 65px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 20px 30px;
    }
    
    .oval-btn i {
        font-size: 2.2rem;
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .location-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .cities-table {
        font-size: 0.9rem;
    }
    
    .cities-table th,
    .cities-table td {
        padding: 10px 8px;
    }
    
    .city-number {
        width: 40px;
        font-size: 1rem;
    }
    
    .footer-logo img {
        height: 60px;
        width: 60px;
    }
    
    .pagination {
        gap: 8px;
    }
    
    .pagination-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        padding: 8px;
    }
    
    .pagination-info {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .logo img {
        max-height: 28px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .footer-logo img {
        height: 50px;
        width: 50px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        padding: 6px;
    }
    
    .pagination-info {
        font-size: 0.8rem;
    }
}

/* YENİ EKLENEN STİLLER */
.user-selected-city {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

.new-indicator {
    font-size: 0.8rem;
    color: #ff9800;
    font-weight: 600;
    margin-left: 5px;
}