/* 
    Esteticapark Landing Page V2.5.0
    Architected by Antigravity AI
    Premium, Clean, Performance-Focused
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-bg: #fdfaf8;
    --accent-navy: #1a365d;
    --accent-navy-light: #2c5282;
    --accent-navy-hover: #0f172a;
    --accent-red: #991b1b;
    --accent-red-hover: #7f1d1d;
    --text-main: #2d2d2d;
    --text-muted: #707070;
    --whatsapp-green: #25d366;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);

    /* Spacing & Layout */
    --container-width: 600px;
    --section-gap: 4.5rem;
    --card-radius: 24px;

    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(26, 54, 93, 0.1);
    --shadow-strong: 0 20px 50px -15px rgba(26, 54, 93, 0.2);
}

/* 1. RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

img {
    max-width: 100%;
    height: auto;
}

.hidden {
    display: none !important;
}

/* 2. BACKGROUND ELEMENTS */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.blob-1 {
    top: -100px;
    right: -100px;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    opacity: 0.6;
}

/* 3. LIVE VISITOR PILL */
.live-visitor-pill {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    /* Slightly more padding */
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    /* Prevent text wrap */
    width: max-content;
    /* Ensure it fits content */
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
    animation: blink 2s infinite;
}

#live-count-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* 4. HEADER & HERO */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 250, 248, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-randevu-header {
    background: var(--accent-navy);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.btn-randevu-header:hover {
    background: var(--accent-navy-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
}

.site-logo {
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.hero {
    text-align: center;
    margin: 2rem 0 3.5rem;
    /* Increased top and bottom margin */
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* FLASH SALE TIMER */
.offer-timer-section {
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, var(--accent-navy) 0%, var(--accent-navy-light) 100%);
    border-radius: 30px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.offer-timer-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate-bg 15s linear infinite;
    pointer-events: none;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.offer-badge {
    background: var(--accent-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(153, 27, 27, 0.4);
    position: relative;
    z-index: 2;
}

.offer-badge i {
    animation: flash-bolt 1s infinite;
}

@keyframes flash-bolt {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.offer-container h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.offer-container h2 span {
    color: #ffcc00;
}

.offer-container p {
    font-size: 0.95rem;
    /* Slightly larger */
    color: rgba(255, 255, 255, 0.95);
    /* Better readability */
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 10px;
    border-radius: 16px;
    min-width: 65px;
}

.timer-unit span {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.timer-unit label {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.6;
    margin-top: 6px;
}

.timer-separator {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* 5. PROCESS STEPS (1-2-3) */

.process-section {
    margin-bottom: var(--section-gap);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 2rem;
    border-radius: 24px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--accent-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(26, 54, 93, 0.3);
}

.step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(26, 54, 93, 0.15);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

/* 6. SELECTION STEPS & CARDS */
.selection-step {
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.step-title span {
    background: var(--accent-navy);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.service-card {
    height: 180px;
    /* Square/Landscape balance */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: var(--card-radius);
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card[data-service="yuz-germe"] {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%), url('img/yuz-germe.png');
}

.service-card[data-service="bolgesel-incelme"] {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%), url('img/zayiflama.png');
}

.service-card span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card.active {
    border-color: var(--accent-navy);
    box-shadow: var(--shadow-strong);
}

/* 7. MODAL SYSTEM */
.modal-trigger {
    width: 100%;
    padding: 1.25rem 1.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.modal-trigger:hover {
    background: rgba(255, 255, 255, 0.8);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 300000;
    /* Increased to be above notifications */
    display: none;
    align-items: flex-end;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    width: 100%;
    background: white;
    border-radius: 32px 32px 0 0;
    padding: 2rem 1.5rem;
    animation: slideUp 0.4s ease-out;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Added for vertical alignment */
    margin-bottom: 2rem;
}

.close-modal {
    background: #f5f5f5;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-modal:hover {
    background: #eeeeee;
    color: var(--text-main);
    transform: rotate(90deg);
}

.close-modal i {
    font-size: 1.1rem;
}

.city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.city-item {
    padding: 1.25rem;
    background: #f8f8f8;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.city-item:hover,
.city-item.selected {
    background: var(--accent-navy);
    color: white;
}

/* 8. CONTACT CARD (RESULT) */
#contact-section {
    display: none;
    margin-bottom: var(--section-gap);
}

#contact-section.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.branch-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-navy);
}

.branch-address {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

/* Pricing Section */
.price-promo-box {
    background: #fff5f5;
    border: 1px dashed var(--accent-red);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: pulse-border 2s infinite;
}

.promo-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-price {
    text-decoration: line-through;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-red);
}

.price-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Service Badge */
.service-card {
    position: relative;
}

.promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-red);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(153, 27, 27, 0.3);
    z-index: 5;
}

.urgency-badge {
    background: rgba(153, 27, 27, 0.05);
    color: var(--accent-red);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(153, 27, 27, 0.1);
}

.urgency-badge i {
    font-size: 0.75rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pulse-border {
    0% {
        border-color: var(--accent-red);
    }

    50% {
        border-color: transparent;
    }

    100% {
        border-color: var(--accent-red);
    }
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    padding: 1.25rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
}

.btn-call {
    background: #f0f0f0;
    color: var(--text-main);
}

/* 9. TESTIMONIALS (VIDEOS) */
.testimonials {
    margin-bottom: var(--section-gap);
}

.video-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-track {
    display: flex;
    gap: 1.25rem;
    padding: 0 1.25rem;
}

.video-card {
    width: 160px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.carousel-hint {
    text-align: center;
    margin-top: 2rem;
    /* Added more space */
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 10. TRUST & STATS */
.trust-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: var(--section-gap);
}

.feature-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-navy);
    margin-bottom: 1rem;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 2.5rem 1.5rem;
    background: var(--accent-navy);
    border-radius: 30px;
    color: white;
    margin-bottom: var(--section-gap);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    display: inline-block;
}

.stat-suffix {
    font-size: 1.75rem;
    font-weight: 800;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* 11. FAQ ACCORDION */
.faq-section {
    margin-bottom: var(--section-gap);
}

.faq-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
    background: rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 12. FOOTER */
footer {
    background: white;
    color: var(--text-main);
    padding: 4rem 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: none;
}

.footer-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-social a {
    color: var(--accent-navy);
    font-size: 1.5rem;
}

.footer-bottom {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

/* 13. NOTIFICATIONS & FOMO */
.fomo-notification {
    position: fixed;
    bottom: 25px;
    left: 50%;
    background: white;
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 99999;
    transform: translate(-50%, 150%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #10b981;
    width: calc(100% - 40px);
    max-width: 320px;
}

.fomo-notification.show {
    transform: translate(-50%, 0);
}

.fomo-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fomo-content {
    display: flex;
    flex-direction: column;
}

.fomo-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.fomo-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-legal {
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 5px;
}

.footer-legal a:hover {
    color: var(--accent-navy);
}

/* 14. ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* 15. MOBILE OPTIMIZATIONS (Consolidated) */

/* 16. SERVICE DETAILS */
.service-details-section {
    margin-bottom: var(--section-gap);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    box-shadow: var(--shadow-soft);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.detail-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-card:hover .detail-image img {
    transform: scale(1.08);
}

.detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-weight: 700;
}

.detail-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-list li i {
    color: var(--accent-navy);
}


/* 18. TURKEY MAP */
.map-section {
    margin-bottom: var(--section-gap);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header p {
    color: var(--text-muted);
}

.map-container {
    background: #fcfaf7;
    padding: 3rem 1.5rem;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

#turkey-map-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.fallback-map {
    width: 100%;
    height: auto;
    opacity: 0.8;
    filter: sepia(0.2) hue-rotate(-20deg) brightness(1.1);
    object-fit: contain;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-navy);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-navy);
    transition: 0.3s;
    z-index: 5;
}

.city-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent-navy);
    border-radius: 50%;
    animation: city-pulse 2s infinite;
}

@keyframes city-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.city-dot::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid var(--accent-navy);
    opacity: 0;
    animation: pulse-map 2s infinite;
}

@keyframes pulse-map {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.city-dot:hover {
    transform: scale(1.5);
    z-index: 10;
}

.city-dot span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.city-dot:hover span {
    opacity: 1;
    top: -35px;
}

/* BEFORE/AFTER SLIDER */
.before-after-section {
    margin-bottom: var(--section-gap);
}

.ba-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: ew-resize;
    user-select: none;
    background: #f0f0f0;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    /* Initial clip */
}

.ba-after {
    z-index: 1;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 40px;
    margin-left: -20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.ba-handle::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    transform: translateX(-50%);
}

.ba-handle i {
    width: 34px;
    height: 34px;
    background: white;
    color: var(--accent-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 11;
}

.ba-label {
    position: absolute;
    bottom: 15px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    pointer-events: none;
    z-index: 5;
}

.ba-label-before {
    left: 15px;
}

.ba-label-after {
    right: 15px;
}

@media (min-width: 768px) {
    .ba-container {
        flex-direction: row;
    }

    .ba-slider {
        flex: 1;
    }
}

/* 11. FOOTER */

footer {
    background: #fff;
    padding: 4rem 1.5rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a i {
    color: var(--accent-navy);
    margin-right: 8px;
}

.footer-links a:hover {
    color: var(--accent-navy);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #f8f8f8;
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    transform: translateY(-5px);
    background: var(--accent-navy);
    color: white;
}

.footer-social a:hover .fa-youtube {
    background: #ff0000;
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.footer-legal {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent-navy);
}

.footer-bottom {
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #f9f9f9;
    padding-top: 2rem;
}

/* Randevu Animation */
@keyframes shake-highlight {
    0% {
        transform: translateX(0);
        box-shadow: var(--shadow-soft);
    }

    25% {
        transform: translateX(-4px);
        box-shadow: 0 0 15px var(--accent-navy);
    }

    50% {
        transform: translateX(4px);
        box-shadow: 0 0 20px var(--accent-navy);
    }

    75% {
        transform: translateX(-4px);
        box-shadow: 0 0 15px var(--accent-navy);
    }

    100% {
        transform: translateX(0);
        box-shadow: var(--shadow-soft);
    }
}

.shake-highlight {
    animation: shake-highlight 0.4s ease 3;
    border: 2px solid var(--accent-navy) !important;
}

/* 19. COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.25rem;
    z-index: 99999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
}

.cookie-content a {
    color: var(--accent-navy);
    text-decoration: underline;
}

.btn-accept {
    background: var(--text-main);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-accept:hover {
    background: var(--accent-navy);
}

@media (min-width: 600px) {
    .cookie-banner {
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

/* 20. GOOGLE REVIEWS SECTION */
.google-reviews {
    margin-bottom: var(--section-gap);
    overflow: hidden;
    padding-top: 1rem;
}

.reviews-header {
    text-align: center;
    padding: 0 1.25rem;
    margin-bottom: 2.5rem;
}

.google-rating-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    margin-top: -0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.google-logo-small {
    width: 18px;
    height: 18px;
}

.rating-stars {
    color: #fbbc05;
    display: flex;
    gap: 2px;
    font-size: 0.85rem;
}

.rating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.rating-text strong {
    color: var(--accent-navy);
}

/* Marquee Logic */
.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding: 20px 0;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
    padding: 10px 0;
}

/* Gradient fade on edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-bg) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-bg) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    min-width: 100%;
    animation: marquee-scroll 60s linear infinite;
}

/* Pause on hover for better UX */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 20px));
    }
}

/* Review Card Design */
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    width: 300px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-navy-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-stars {
    color: #fbbc05;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.review-content {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.verified-icon {
    color: #4285f4;
    font-size: 0.7rem;
}