/* Color Palette: B — Derin Eflatun */
:root {
    --primary: #6B3F5E; /* Dark Purple */
    --secondary: #D4A0B5; /* Soft Pink */
    --light: #FDF6F9; /* Background */
    --text-dark: #2B1825;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pt-pb {
    padding: 80px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #55314b;
    transform: translateY(-2px);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

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

.w-100 { width: 100%; display: block; }

/* PROMO BANNER */
.promo-banner {
    background-color: var(--secondary);
    color: var(--text-dark);
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
}

/* HEADER */
.site-header {
    background: rgba(253, 246, 249, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
    color: var(--secondary);
}

.main-nav a {
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.main-nav a:hover:not(.btn-primary) {
    color: var(--secondary);
}

/* HERO SECTION (Z-Pattern) */
.hero-section {
    padding: 60px 0 100px;
    overflow: hidden;
}

.hero-z-pattern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text .highlight {
    color: var(--primary);
}

.copyright-text p {
    font-size: 0.9rem;
}

/* YENİ PROMOSYON BANTLARI (MARQUEE & GRADIENT) */
.top-bar-marquee {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}
.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}
.marquee-content span {
    margin-right: 50px;
    letter-spacing: 0.5px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.top-bar-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}
.pulsing-icon {
    display: inline-block;
    animation: pulse 1.5s infinite;
    margin-right: 8px;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 200px 200px 0 0; /* Aesthetic arch shape */
    box-shadow: 0 20px 40px rgba(107, 63, 94, 0.2);
    position: relative;
    z-index: 2;
    object-fit: cover;
    height: 550px;
}

.backdrop-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 200px 200px 0 0;
    top: 30px;
    left: 30px;
    z-index: 1;
    opacity: 0.3;
}

/* SECTION TITLES */
.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto 40px;
}

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

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 63, 94, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.service-info div {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

/* BEFORE AFTER SLIDER */
.ba-scroller {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.ba-scroller::-webkit-scrollbar { display: none; }
.ba-slider-container {
    position: relative;
    width: 100%;
    min-width: min(100%, 800px);
    height: 450px;
    flex: 0 0 auto;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    scroll-snap-align: center;
}
.ba-after, .ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.ba-before {
    max-width: none;
}
.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    margin-left: -20px;
    cursor: ew-resize;
    z-index: 10;
}
.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* YORUMLAR (Testimonials) */
.testimonials-scroller {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 10px;
    scrollbar-width: none;
}
.testimonials-scroller::-webkit-scrollbar { display: none; }
.testimonials-card {
    min-width: 320px;
    max-width: 350px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}
.google-review-card .gr-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.google-review-card .gr-author-info { display: flex; align-items: center; gap: 12px; }
.google-review-card .gr-avatar { width: 40px; height: 40px; border-radius: 50%; background: #4285F4; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 18px; }
.google-review-card .gr-meta h4 { margin: 0; font-size: 14px; font-weight: 600; color: #202124; }
.google-review-card .gr-meta .gr-time { font-size: 12px; color: #70757a; margin-top: 2px; }
.google-review-card .gr-logo svg { width: 20px; height: 20px; }
.google-review-card .gr-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.google-review-card .t-content { font-size: 14px; color: #3c4043; line-height: 1.5; margin: 0; }

/* FAQ ACCORDION */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    background: var(--light);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
}
.faq-question h3 { margin: 0; font-size: 18px; }
.faq-icon { font-size: 24px; font-weight: 300; transition: 0.3s; }
.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: #666;
}

/* BOOKING SECTION */
.booking-section {
    background: var(--white);
}

.booking-flex {
    display: flex;
    gap: 60px;
}

.booking-form-area {
    flex: 2;
}

.contact-info-area {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.contact-info-area h2 {
    margin-bottom: 20px;
}

.contact-info-area ul {
    list-style: none;
}

.contact-info-area li {
    margin-bottom: 15px;
    font-size: 16px;
}

.lina-booking-box {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(107, 63, 94, 0.1);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 63, 94, 0.1);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.slot-btn {
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    font-size: 14px;
}

.slot-btn:hover {
    background: rgba(107, 63, 94, 0.1);
}

.slot-btn.selected {
    background: var(--primary);
    color: var(--white);
}

.error-msg {
    color: #d9534f;
    margin-bottom: 15px;
    font-weight: 600;
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(107, 63, 94, 0.4); /* Derin eflatun golgesi */
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(107, 63, 94, 0.6);
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .header-flex { 
        flex-direction: row; 
        height: 80px; 
        padding: 0; 
    }
    .mobile-menu-toggle { 
        display: flex; 
    }
    .main-nav { 
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: none; 
        margin-top: 0;
    }
    .main-nav.active {
        display: flex;
    }
    .main-nav a { 
        display: block; 
        margin: 10px 0; 
        text-align: center; 
    }
    .main-nav a.btn-primary {
        margin-left: 0 !important;
    }
    .hero-z-pattern { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
    }
    .hero-text h1 { 
        font-size: 32px; 
    }
    .hero-text p {
        font-size: 15px;
    }
    .pt-pb { 
        padding: 40px 0; 
    }
    .booking-flex { 
        flex-direction: column; 
        gap: 30px; 
    }
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width: 400px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}
