/* ========================================
   TOPALOGLU OTO KURTARMA - MAIN STYLES
   Ultra Dark Theme - Responsive Design
   ======================================== */

/* CSS VARIABLES - Kolay tema yönetimi */
:root {
    --color-primary: #ffc107;
    --color-primary-dark: #ff9800;
    --color-bg-main: #020202;
    --color-bg-secondary: #0a0a0a;
    --color-text-primary: #e0e0e0;
    --color-text-secondary: #cccccc;
    --color-text-muted: #888888;
    --color-border: #1a1a1a;
    --color-border-light: #333333;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-main);
    padding-bottom: 100px;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--color-primary-dark);
}

/* UTILITY CLASSES */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

/* HEADER - Sticky Navigation */
header {
    background-color: var(--color-bg-main);
    color: white;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.logo-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-left: 5px solid var(--color-primary);
    padding-left: 15px;
    color: white;
    margin: 0;
}

/* NAVIGATION */
nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed);
}

nav a:hover,
nav a.active {
    background-color: var(--color-primary);
    color: #000;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--color-primary);
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.80);
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 20px;
    max-width: 900px;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    opacity: 0.95;
}

.phone-display {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}

/* CTA BUTTON */
.cta-button {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    color: #000000;
    padding: 22px 60px;
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.cta-icon {
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.9);
}

/* SECTION TITLE */
.section-title {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* HİZMETLER BÖLÜMÜ */
.services {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    max-width: 1300px;
    margin: auto;
    background-color: var(--color-bg-main);
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: var(--color-bg-secondary);
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    text-align: left;
    border: 1px solid var(--color-primary);
    padding: 0;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.15);
    background: #0f0f0f;
}

.service-card:active {
    transform: translateY(-2px);
}

.service-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-primary);
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Service Card Link Stilleri */
.service-card a {
    text-decoration: none;
    color: inherit;
}

.service-card:hover .service-content span {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Responsive Service Cards */
@media (max-width: 768px) {
    .service-container {
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        max-width: 100%;
        width: 100%;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-card {
        max-width: 100%;
    }
    
    .service-img-wrapper {
        height: 180px;
    }
    
    .service-content {
        padding: 15px;
    }
}

/* Hizmetlerimiz Sayfası - Tıklanabilir Kartlar için Responsive */
@media (max-width: 768px) {
    .services .container > a > div {
        flex-direction: column !important;
        padding: 20px !important;
    }
    
    .services .container > a > div > div {
        min-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .services .container > a > div {
        padding: 15px !important;
        gap: 20px !important;
    }
    
    .services .container h2 {
        font-size: 24px !important;
    }
    
    .services .container p {
        font-size: 14px !important;
    }
}

/* NASIL ÇALIŞIR */
.how-it-works {
    background-color: var(--color-bg-main);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.step-item {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.step-title {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* İSTATİSTİKLER */
.stats-section {
    background-color: var(--color-bg-secondary);
    padding: 50px var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GALERİ CAROUSEL */
.gallery-section {
    background-color: var(--color-bg-main);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--color-primary);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    border: none;
    font-size: 48px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.carousel-btn:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 193, 7, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-primary);
    border-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

/* MÜŞTERİ YORUMLARI CAROUSEL */
.reviews-section {
    background-color: var(--color-bg-secondary);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel-container {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.review-card {
    background: var(--color-bg-main);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--color-primary);
    width: 100%;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.stars {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

/* Reviews Carousel Buttons */
.reviews-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    border: none;
    font-size: 48px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.reviews-btn:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
}

.reviews-prev {
    left: 0;
}

.reviews-next {
    right: 0;
}

/* Reviews Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.review-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.review-dot:hover {
    background: rgba(255, 193, 7, 0.5);
    transform: scale(1.2);
}

.review-dot.active {
    background: var(--color-primary);
    border-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

/* HAKKIMIZDA */
.about-section {
    background-color: var(--color-bg-main);
    color: white;
    padding: 70px var(--spacing-md);
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    color: var(--color-text-primary);
}

.about-year {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

/* SSS (FAQ) */
.faq-section {
    background-color: var(--color-bg-secondary);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.faq-card {
    background: var(--color-bg-main);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    text-align: left;
    border-left: 3px solid var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.faq-question {
    color: white;
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 8px;
    display: block;
}

.faq-answer {
    color: #aaa;
    font-size: 14px;
}

/* HİZMET BÖLGELERİ - İLÇELER */
.districts-section {
    background-color: var(--color-bg-main);
    padding: 50px var(--spacing-md);
    text-align: center;
}

.districts-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.district-tag {
    background-color: var(--color-bg-secondary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 14px;
    border-left: 3px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
    transition: all var(--transition-speed);
}

.district-tag:hover {
    background-color: var(--color-primary);
    color: #000000;
    cursor: pointer;
    transform: translateY(-2px);
}

/* İLETİŞİM & HARİTA */
.contact-section {
    background-color: var(--color-bg-secondary);
    padding: 50px var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-main);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--color-border-light);
}

.contact-title {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 4px solid var(--color-primary);
    padding-left: 15px;
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 16px;
}

.info-icon {
    color: var(--color-primary);
    margin-right: 12px;
    font-size: 20px;
}

.contact-map {
    flex: 1.5;
    min-width: 300px;
    height: 350px;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* FOOTER */
footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 30px var(--spacing-md);
    border-top: 1px solid var(--color-border);
    font-size: 14px;
}

/* STICKY BOTTOM BUTTONS */
.fixed-bottom-bar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 600px;
    height: auto;
    display: flex;
    gap: 10px;
    z-index: 9999;
    background: transparent;
    box-shadow: none;
    border: none;
}

.fixed-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    border-radius: var(--border-radius-lg);
    padding: 12px 5px;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
    border: 2px solid #ffffff;
}

.fixed-btn:active {
    transform: scale(0.95);
}

.fixed-btn span.sub-text {
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
    text-transform: none;
    opacity: 0.9;
}

/* HEMEN ARA - Fosforlu Kırmızı + Nabız */
.btn-call {
    background: linear-gradient(135deg, #ff4d4d, #ff0000);
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 77, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

/* WHATSAPP - Fosforlu Yeşil + Nabız */
.btn-whatsapp {
    background: linear-gradient(135deg, #40ff70, #25D366);
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(64, 255, 112, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(64, 255, 112, 0); }
    100% { box-shadow: 0 0 0 0 rgba(64, 255, 112, 0); }
}

/* RESPONSIVE DESIGN */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    nav {
        gap: 20px;
    }
    
    nav a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    .hero-slider {
        height: 65vh;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .phone-display {
        font-size: 28px;
    }

    .cta-button {
        font-size: 18px;
        padding: 15px 35px;
        width: 100%;
        max-width: 280px;
    }

    header {
        justify-content: space-between;
    }

    header h1 {
        font-size: 16px;
    }
    
    /* Mobile Menu */
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg-main);
        flex-direction: column;
        padding: 20px;
        display: none;
        border-top: 1px solid var(--color-border);
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
    }

    .contact-map {
        height: 300px;
    }

    .fixed-btn {
        font-size: 16px;
        padding: 10px 5px;
    }
    
    /* Gallery Carousel Tablet */
    .gallery-carousel {
        padding: 0 50px;
    }
    
    .carousel-slide {
        height: 400px;
    }
    
    /* Services - Mobilde 2 sütun */
    .service-container {
        gap: 15px;
    }
    
    .service-card {
        max-width: calc(50% - 10px);
        align-items: center;
        text-align: center;
    }
    
    /* Reviews Carousel Tablet */
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .reviews-btn {
        width: 45px;
        height: 45px;
        font-size: 38px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .fixed-btn {
        font-size: 14px;
        padding: 8px 3px;
    }
    
    .fixed-btn span.sub-text {
        font-size: 10px;
    }
    
    /* Gallery Carousel Mobile */
    .gallery-carousel {
        padding: 0 45px;
    }
    
    .carousel-slide {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Services - Mobilde de 2 sütun */
    .service-container {
        gap: 12px;
    }
    
    .service-card {
        max-width: calc(50% - 8px);
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    /* Reviews Carousel Mobile */
    .reviews-carousel {
        padding: 0 45px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-card p {
        font-size: 14px;
    }
    
    .reviews-btn {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
    
    .review-dot {
        width: 10px;
        height: 10px;
    }
}

/* Anadolu Yakası İlçelerini Gizle (SEO için HTML'de kalacak) */
.anadolu-yakasi {
    display: none !important;
}

/* Select option'ları için de gizleme */
select option.anadolu-yakasi {
    display: none !important;
}
