@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700&display=swap');

:root {
    /* HYBRID PALETTE: SOFT BG + VIBRANT FG */

    /* VIBRANT ACCENTS (Göz Alıcı) */
    --primary: #0284c7;
    /* Sky 600 - Canlı, Tok Mavi */
    --primary-light: #38bdf8;
    /* Sky 400 - Parlak Mavi */
    --primary-dark: #0369a1;
    /* Sky 700 - Derin Mavi */
    --accent: #f59e0b;
    /* Amber 500 - Canlı Turuncu/Altın */
    --accent-glow: #fbbf24;
    /* Amber 400 */

    /* SOFT BACKGROUNDS (Yumuşak) */
    --bg-body: #f8fafc;
    /* Slate 50 - Çok Açık Soğuk Gri/Beyaz */
    --bg-card: #ffffff;
    /* Beyaz */
    --bg-input: #f1f5f9;
    /* Slate 100 */

    /* HIGH CONTRAST TEXT (Okunabilir & Net) */
    --text-main: #0f172a;
    /* Slate 900 - Simsiyah değil ama çok koyu lacivert */
    --text-muted: #475569;
    /* Slate 600 - Tok Gri */
    --text-white: #ffffff;

    --glass: rgba(255, 255, 255, 0.9);
    --border-light: #e2e8f0;
    /* Slate 200 - Çok silik border */

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    /* Hafif ama belirgin gölge */
    --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.4);
    /* Neon Glow etkisi */

    --radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    /* Çok Soft Gradyan */
    background-image:
        radial-gradient(circle at 0% 0%, rgba(254, 252, 232, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(219, 234, 254, 0.4) 0%, transparent 60%);
    color: var(--text-main);
    margin: 0;
    padding-bottom: 120px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    color: var(--text-main);
    font-weight: 700;
    /* Daha kalın */
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Wrapper */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
}

/* Header - Blue Glass */
.main-header {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 0;
    /* Reduced from 15px */
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 35px;
    /* Reduced from 45px */
    width: auto;
}

/* Grouping Price and Button */
.price-btn-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* =========================================
   HEADER ACTIONS (NEW & PREMIUM)
   ========================================= */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.h-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* Reduced from 8px */
    padding: 6px 14px;
    /* Reduced from 8px 16px */
    border-radius: 10px;
    /* Slight adjustment */
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--primary-dark);
    white-space: nowrap;
}

.h-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.h-btn-call:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
}

.h-btn-wp:hover {
    border-color: #4ade80;
    color: #4ade80;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.2);
}

.h-btn-campaign {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white !important;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    animation: glowPulse 2s infinite;
    font-weight: 700;
}

.h-btn-campaign:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #fbbf24, #b45309);
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    }

    100% {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
    }
}

/* Burger Button */
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    /* Reduced from 10px */
    z-index: 1001;
    display: block;
    /* Ensure visible */
}

.burger-btn .bar {
    width: 26px;
    /* Reduced from 30px */
    height: 3px;
    background-color: var(--primary-dark);
    margin: 4px 0;
    /* Reduced from 6px */
    transition: 0.4s;
    border-radius: 3px;
    box-shadow: 0 0 10px var(--primary);
}

.burger-btn:hover .bar {
    background-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-light);
}

/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-menu-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.overlay-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.overlay-nav li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.overlay-menu.active .overlay-nav li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Menu Items */
.overlay-menu.active .overlay-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.overlay-menu.active .overlay-nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.overlay-menu.active .overlay-nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.overlay-menu.active .overlay-nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.overlay-menu.active .overlay-nav li:nth-child(5) {
    transition-delay: 0.5s;
}

.overlay-menu.active .overlay-nav li:nth-child(6) {
    transition-delay: 0.6s;
}

.overlay-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    display: inline-block;
}

.overlay-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
    box-shadow: 0 0 10px var(--primary);
}

.overlay-nav a:hover {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-light);
}

.overlay-nav a:hover::after {
    width: 100%;
}

.highlight-link {
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.5rem !important;
}

.highlight-link:hover {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 0 30px var(--primary);
}

.highlight-link::after {
    display: none !important;
}

/* Section Cards - Blue Dark */
.section-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.section-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

/* Background Shine Effect */
.section-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.section-card:hover::before {
    opacity: 1;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
    font-weight: 800;
    /* Ekstra Kalın */
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
}

.section-title i {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    /* Canlı Mavi Degrade */
    padding: 12px;
    border-radius: 16px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    /* Belirgin Renkli Gölge */
    color: #fff;
    transform: rotate(-5deg);
    /* Hafif dinamik açı */
}

/* Services List - Modern Blue */
.services-list {
    display: grid;
    gap: 20px;
}

.service-item {
    background: #ffffff;
    /* White Cards */
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: default;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    background: #ffffff;
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Kart havaya kalksın */
}

.service-item.selected {
    border-color: var(--primary-light);
    background: linear-gradient(90deg, #f0f9ff 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem;
    cursor: pointer;
    width: 100%;
}

.service-price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.service-info h4 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.service-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    /* Çok Kalın */
    font-size: 1.5rem;
    /* Daha Büyük */
    color: var(--primary-dark);
    /* Koyu Canlı Mavi */
    text-align: right;
    text-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    line-height: 1.2;
    white-space: nowrap;
}

.old-price {
    font-size: 0.9rem;
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.8;
    margin-right: 0;
    margin-bottom: 2px;
}

.service-details {
    padding: 0 1.8rem 1.8rem 1.8rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    display: none;
    border-top: 1px solid var(--border-light);
    margin-top: -0.5rem;
    padding-top: 1.5rem;
}

.service-details.show {
    display: block;
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-toggle {
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.detail-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.6);
}

.detail-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.detail-toggle:hover i {
    transform: translateY(2px);
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Extras Grid - Modern Pills */
.extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Minimal Extra Service Styles */
.extra-service-item {
    background: #f8fafc;
    border-color: var(--border-light);
    margin-bottom: 0;
}

.extra-service-item .service-header {
    padding: 12px 20px;
    cursor: default;
}

.extra-service-item .service-info h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    color: var(--text-muted);
}

.extra-service-item.selected .service-info h4 {
    color: var(--primary-dark);
}

.extra-service-item .service-price-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.extra-service-item .service-price {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-shadow: none;
}

/* Select Button */
.btn-select {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit';
    min-width: 70px;
}

.disabled-section {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: rgba(56, 189, 248, 0.1);
}

.btn-select.selected {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    transform: scale(1.05);
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* CUSTOM CALENDAR - BLUE GLASS & CLEAN HEADER */
.flatpickr-calendar {
    background: #ffffff !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: 0 20px 50px rgba(148, 163, 184, 0.2) !important;
    color: var(--text-main) !important;
    border-radius: 24px !important;
    padding: 20px !important;
    width: 340px !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    display: none !important;
}

/* Header Temizliği */
.flatpickr-months {
    background: transparent !important;
    margin-bottom: 20px !important;
}

.flatpickr-current-month {
    font-size: 1.2rem !important;
    padding: 0 !important;
    color: var(--text-main) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flatpickr-monthDropdown-months {
    font-family: 'Outfit';
    font-weight: 700;
    color: var(--text-main) !important;
    background: transparent !important;
    margin: 0 5px !important;
}

.numInputWrapper span {
    display: none !important;
}

.cur-year {
    font-weight: 300 !important;
    color: var(--primary) !important;
}

.flatpickr-weekdays {
    margin-bottom: 10px !important;
}

.flatpickr-weekday {
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Günler */
.flatpickr-day {
    color: var(--text-main) !important;
    border-radius: 10px !important;
    margin: 2px !important;
    border: 1px solid transparent;
    transition: all 0.2s;
    height: 42px !important;
    line-height: 42px !important;
}

.flatpickr-day:hover {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
}

.flatpickr-day.selected {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5) !important;
    font-weight: 700;
}

.flatpickr-day.today {
    border-color: var(--primary-light) !important;
    color: var(--primary-light) !important;
}

.flatpickr-day.disabled {
    color: #cbd5e1 !important;
    opacity: 1 !important;
}

#tarih-secici {
    display: none;
}

/* Time Slots - Compact Grid */
.datetime-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.calendar-wrapper {
    flex: 1;
    min-width: 340px;
}

.slots-wrapper {
    flex: 1.5;
    min-width: 260px;
    padding-right: 0;
}

.slots-wrapper h4 {
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
    gap: 12px;
}

.time-slot {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border-light);
    padding: 10px 5px;
    text-align: center;
    border-radius: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    background: #f0f9ff;
    color: var(--primary);
}

.time-slot.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    font-weight: 600;
}

/* Forms */
.form-input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
    background: var(--bg-card);
}

.btn-primary-lg {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    /* Güçlü Mavi Degrade */
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    /* Daha Büyük Yazı */
    font-weight: 700;
    font-family: 'Outfit';
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.5);
    /* Güçlü Gölge */
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.btn-primary-lg:not(:disabled):hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px -5px rgba(96, 165, 250, 0.5);
}

.btn-primary-lg:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #cbd5e1;
    color: #64748b;
    box-shadow: none;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.back-btn:hover {
    color: var(--primary-dark);
}

.bottom-bar {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    z-index: 900;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-total {
    font-family: 'Outfit';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.hidden {
    display: none;
}

/* Footer */
.main-footer {
    position: relative;
    background: linear-gradient(to top, #f1f5f9 0%, rgba(255, 255, 255, 0) 100%);
    border-top: 1px solid transparent;
    padding: 60px 0 140px 0;
    margin-top: 80px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    background: #f0f9ff;
}

.footer-links .sep {
    color: var(--border-light);
    font-size: 0.8rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Custom SweetAlert Content */
.swal-dark-popup {
    background: #ffffff !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 20px !important;
    color: var(--text-main) !important;
}

.swal-dark-title {
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.1), transparent);
    padding: 15px 0 !important;
    border-radius: 10px;
    color: var(--primary-dark) !important;
}

.swal-dark-content {
    text-align: left !important;
    font-size: 0.95rem !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
    padding-right: 10px;
}

.swal-dark-content::-webkit-scrollbar {
    width: 8px;
}

.swal-dark-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.swal-dark-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.swal-dark-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.swal-dark-content h4 {
    margin-top: 1.5rem;
    color: var(--primary-dark);
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 5px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        overflow-x: hidden;
    }

    .section-card {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .bottom-bar {
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 12px 20px;
        flex-direction: row;
    }

    .service-header {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .service-info {
        width: 100%;
        margin-bottom: 5px;
    }

    .service-price-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #e2e8f0;
        padding-top: 10px;
        margin-top: 5px;
    }

    .price-btn-group {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* MINI Detay Butonu */
    .detail-toggle {
        padding: 2px 8px !important;
        font-size: 0.65rem !important;
        height: 24px;
        line-height: 20px;
        min-height: unset;
        border-radius: 6px;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        color: #94a3b8;
        margin: 0;
    }

    .service-price {
        margin: 0;
        font-size: 1.05rem;
        align-items: flex-end;
    }

    .service-header::after {
        display: none;
    }

    .datetime-container {
        flex-direction: column;
        gap: 25px;
        margin-top: 0;
    }

    .calendar-wrapper,
    .slots-wrapper {
        min-width: 0;
        width: 100%;
        flex: none;
    }

    .flatpickr-calendar {
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        margin: 0 auto !important;
        padding: 10px !important;
    }

    .flatpickr-day {
        height: 38px !important;
        line-height: 38px !important;
        margin: 1px !important;
    }

    .extra-service-item .service-header {
        padding: 12px 15px;
    }

    .extra-service-item .service-info h4 {
        font-size: 0.9rem;
        max-width: 140px;
    }

    .btn-select {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Header & Action Buttons */
    .header-right {
        gap: 10px;
    }

    .header-actions {
        gap: 8px;
    }

    .h-btn {
        padding: 0;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        min-width: unset;
    }

    .h-btn span {
        display: none;
    }

    /* Çark butonu mobilde yazılı olsun */
    .h-btn-campaign {
        width: auto !important;
        height: 38px !important;
        padding: 0 12px !important;
        border-radius: 50px !important;
        aspect-ratio: auto !important;
    }

    .h-btn-campaign span {
        display: inline-block !important;
        font-size: 0.8rem;
        margin-left: 5px;
    }

    .h-btn i {
        font-size: 1.1rem;
        margin: 0;
    }

    .main-footer {
        padding-bottom: 110px;
    }
}

/* Rezervasyon Özeti (Yeni Eklendi) */
.summary-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

.summary-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.summary-header i {
    color: #3b82f6;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.summary-row.highlight .value {
    color: var(--text-main);
    font-weight: 600;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 5px;
}

/* --- FAQ (Sıkça Sorulan Sorular) --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: #f8fafc;
    border-color: var(--primary);
}

.faq-question {
    padding: 18px 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Varsayılan üçgeni gizle */
    color: var(--text-main);
    font-size: 1.05rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question .icon {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 0.9rem;
}

.faq-item[open] .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.4s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.summary-row.total .value {
    color: var(--primary);
}

.summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 5px 0;
}

.summary-row .label {
    opacity: 0.8;
}

/* --- KOVAN PROMO CARD (Modern & Göz Alıcı) --- */
.kovan-promo-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    /* Indigo to Violet */
    border-radius: var(--radius);
    padding: 30px;
    /* Geniş iç boşluk */
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
    /* Glowy Shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kovan-promo-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.6);
}

/* Cam Efektli Overlay */
.kovan-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.kovan-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 30px;
}

.kovan-text {
    flex: 2;
}

.kovan-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kovan-text h3 i {
    font-size: 1.4rem;
    opacity: 0.9;
}

.kovan-text p {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
}

.kovan-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
}

.kovan-features li {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.kovan-features li i {
    color: #a7f3d0;
    /* Emerald 200 */
}

/* Sağ Taraf Görsel Alanı */
.kovan-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.2);
    animation: floatAnim 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.glow-effect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulseAnim 4s infinite alternate;
}

/* Animations */
@keyframes floatAnim {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulseAnim {
    from {
        opacity: 0.5;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .kovan-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .kovan-text h3 {
        justify-content: center;
        font-size: 1.4rem;
    }

    .kovan-features {
        justify-content: center;
    }

    .kovan-visual {
        display: none;
        /* Mobilde görseli gizle veya küçült */
    }
}