/* ==========================================================================
   CANER ÇETİN LUXURY PORTAL - DESIGN SYSTEM (KALE URLA STYLE)
   ========================================================================== */

:root {
    --lux-gold: #c5a880;            /* Premium luxury gold */
    --lux-gold-hover: #a3855c;      /* Deep gold hover */
    --lux-gold-light: rgba(197, 168, 128, 0.12);
    
    --lux-red: #c5a880;
    --lux-red-hover: #a3855c;
    
    --bg-dark: #000000;             /* Obsidian black background */
    --bg-overlay: rgba(0, 0, 0, 0.7); /* Cinematic overlay */
    --bg-modal: rgba(10, 10, 10, 0.88);   /* Glassmorphic modal background */
    
    --border-gold: rgba(197, 168, 128, 0.35); /* Gold border */
    --border-light: rgba(255, 255, 255, 0.1);
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-cinzel: 'Cinzel', serif;
    
    --transition-lux: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.25s ease;
}

/* ==========================================================================
   GLOBAL RESET & SCROLL CONSTRAINT
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto; /* Enable page scrolling */
    scroll-behavior: smooth; /* Smooth scrolling to sections */
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

/* Elegant scrollbar for internal content panels */
.scrollable-modal-content::-webkit-scrollbar,
.scrollable-panel-content::-webkit-scrollbar {
    width: 4px;
}
.scrollable-modal-content::-webkit-scrollbar-track,
.scrollable-panel-content::-webkit-scrollbar-track {
    background: transparent;
}
.scrollable-modal-content::-webkit-scrollbar-thumb,
.scrollable-panel-content::-webkit-scrollbar-thumb {
    background: var(--border-gold);
    border-radius: 2px;
}
.scrollable-modal-content::-webkit-scrollbar-thumb:hover,
.scrollable-panel-content::-webkit-scrollbar-thumb:hover {
    background: var(--lux-gold);
}

/* Cursor Tracer style */
.cursor-tracer {
    width: 24px;
    height: 24px;
    border: 1px solid var(--lux-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease-out, background-color 0.3s, border-color 0.3s;
}
body.mouse-active .cursor-tracer {
    transform: translate(-50%, -50%) scale(1.6);
    background-color: rgba(197, 168, 128, 0.12);
    border-color: var(--lux-gold-hover);
}

/* Main Container Architecture */
.luxury-app-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    z-index: 10;
}

/* ==========================================================================
   1. KAMPANYA ŞERİDİ (TOP ANNOUNCEMENT BAR - INFINITE MARQUEE TO RIGHT)
   ========================================================================== */
.top-announcement-bar {
    width: 100%;
    background-color: #000000;
    border-bottom: 1px solid var(--border-gold);
    overflow: hidden;
    white-space: nowrap;
    padding: 6px 0;
    flex-shrink: 0;
    z-index: 110;
}

.marquee-track {
    display: inline-flex;
    gap: 4rem;
    animation: marquee-right 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    color: var(--lux-gold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

@keyframes marquee-right {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* ==========================================================================
   2. SHINY CINEMATIC FULL SCREEN SLIDER
   ========================================================================== */
.full-screen-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.03);
    transition-property: opacity, transform;
}

.bg-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark gradient overlay for text readability */
.slider-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(10, 10, 10, 0.6) 0%, 
                rgba(10, 10, 10, 0.35) 45%, 
                rgba(10, 10, 10, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ==========================================================================
   3. LUXURY TRANSPARENT HEADER
   ========================================================================== */
.luxury-header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    flex-shrink: 0;
}

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

.logo-box {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background-color: var(--lux-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--lux-gold);
}

.logo-text {
    font-family: var(--font-cinzel);
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.12em;
}

/* Header Links Menu Aligned Right */
.nav-container {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    justify-content: flex-end; /* Push menus to the far right */
}

.nav-btn {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    padding: 8px 0;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    color: var(--lux-gold);
    border-bottom-color: var(--lux-gold);
}

.nav-btn.highlighted {
    color: #ffffff;
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    border-radius: 4px;
    background-color: rgba(197, 168, 128, 0.05);
}

.nav-btn.highlighted:hover {
    background-color: var(--lux-gold);
    color: #0a0a0a;
    border-color: var(--lux-gold);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.mobile-nav-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

/* ==========================================================================
   4. HERO CENTER CONTENT (Middle Text)
   ========================================================================== */
.hero-center-content {
    min-height: calc(100vh - 114px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.hero-text-wrapper {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-family: var(--font-serif);
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    color: var(--lux-gold);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-cinzel);
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 0 15px rgba(197, 168, 128, 0.6), 
                 0 0 30px rgba(197, 168, 128, 0.4), 
                 4px 4px 10px rgba(0, 0, 0, 0.95), 
                 8px 8px 25px rgba(0, 0, 0, 0.85);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* Luxury Gold Action Button */
.btn-luxury-gold {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0a0a0a;
    background-color: var(--lux-gold);
    border: 1px solid var(--lux-gold);
    padding: 14px 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 14px rgba(197, 168, 128, 0.3);
}

.btn-luxury-gold:hover:not(:disabled) {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-luxury-gold:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Minimalist Slider Controls Overlay */
.slider-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
}

.slider-arrow {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    color: var(--lux-gold);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--lux-gold);
    box-shadow: 0 0 6px var(--lux-gold);
}

/* ==========================================================================
   5. LUXURY FOOTER
   ========================================================================== */
.luxury-footer {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 24px;
    background-color: rgba(10, 10, 10, 0.85);
    flex-shrink: 0;
    z-index: 100;
}

.luxury-footer p {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   PREMIUM GLASSMORPHIC OVERLAY MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    width: 90%;
    max-width: 520px;
    background: var(--bg-modal);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    padding: 36px;
    position: relative;
    transform: scale(0.96) translateY(10px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

/* Large panel sizes for sekmeli / booking screens */
.modal-card.large-modal {
    max-width: 780px;
    width: 95%;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--lux-gold);
}

/* Modal Headers */
.modal-card-header {
    margin-bottom: 24px;
}

.modal-card-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--lux-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.modal-card-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.modal-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #ffffff;
}

/* A. Hakkımızda Content Styles */
.modal-bio-main {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--lux-gold);
    margin-bottom: 20px;
}

.decorative-separator {
    width: 60px;
    height: 1px;
    background-color: var(--border-gold);
    margin: 20px 0;
}

.modal-bio-sub {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* B. Sekmeli / Flex Panel Modal Layout */
.flex-modal-layout {
    display: flex;
    gap: 28px;
    height: 320px;
    overflow: hidden;
}

.modal-tabs-list {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    border-right: 1px solid var(--border-light);
    padding-right: 16px;
}

.modal-tab-trigger {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    padding: 10px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-tab-trigger:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.modal-tab-trigger.active {
    color: var(--lux-gold);
    background-color: var(--lux-gold-light);
    border-left: 2px solid var(--lux-gold);
}

.modal-tabs-content {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 6px;
}

.modal-tab-pane {
    display: none;
    animation: fadeEffect 0.3s ease-out;
}

.modal-tab-pane.active {
    display: block;
}

.modal-tab-pane h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--lux-gold);
    margin-bottom: 12px;
}

.modal-tab-pane p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.luxury-alert {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--lux-gold);
    border-radius: 4px;
    padding: 12px;
    font-size: 11px;
    line-height: 1.5;
}

.luxury-alert.alert-accent-red {
    border-left-color: var(--lux-red);
}

/* C. Randevu Takvimi Widget & Doluluk Modeli */
.responsive-booking-layout {
    height: auto;
}

.booking-calendar-section {
    flex: 1.1;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.25);
}

.calendar-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cal-month-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
}

.cal-nav-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav-btn:hover {
    background-color: var(--lux-gold);
    color: #0a0a0a;
    border-color: var(--lux-gold);
}

.calendar-week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-cell {
    aspect-ratio: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

/* Dolores / Booked Otel look */
.calendar-day-cell.booked {
    background-color: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}

.calendar-day-cell.booked::after {
    content: '';
    position: absolute;
    width: 75%;
    height: 1px;
    background-color: rgba(211, 47, 47, 0.15);
    transform: rotate(-35deg);
}

/* Available Mondays look */
.calendar-day-cell.available {
    background-color: rgba(197, 168, 128, 0.08);
    color: var(--lux-gold);
    border-color: rgba(197, 168, 128, 0.35);
    font-weight: 700;
}

.calendar-day-cell.available:hover {
    background-color: var(--lux-gold);
    color: #0a0a0a;
    border-color: var(--lux-gold);
}

.calendar-day-cell.available.active {
    background-color: var(--lux-gold) !important;
    color: #0a0a0a !important;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.4);
}

.calendar-day-cell.empty {
    cursor: default;
    background: transparent;
}

.booking-actions-section {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.booking-status-indicator {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border-gold);
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

.booking-status-indicator.active {
    color: var(--lux-gold);
    background-color: var(--lux-gold-light);
    border-color: var(--lux-gold);
}

.booking-inputs-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* D. Başarılar Progress Bar */
.empty-success-msg {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-bottom: 18px;
}

.stuck-progress-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 16px;
    border-radius: 6px;
}

.progress-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.progress-track {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    background-color: var(--lux-gold);
    width: 1%;
    border-radius: 3px;
    box-shadow: 0 0 8px var(--lux-gold);
    transition: width 0.3s;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-family: monospace;
}

.progress-pct {
    color: var(--lux-gold);
    font-weight: 700;
}

.progress-status {
    color: rgba(255, 255, 255, 0.4);
}

/* E. Yorumlar Otel Modeli */
.review-node {
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.review-node:last-child {
    border-bottom: none;
}

.review-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.review-stars {
    font-size: 12px;
    color: var(--lux-gold);
    letter-spacing: 2px;
}

.review-txt {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-style: italic;
}

/* ==========================================================================
   LUXURY FORM ELEMENTS (ALTIN VURGULU)
   ========================================================================== */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lux-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lux-form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.lux-select,
.lux-input,
.lux-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    background-color: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.lux-select:focus,
.lux-input:focus,
.lux-textarea:focus {
    outline: none;
    border-color: var(--lux-gold);
    background-color: rgba(0, 0, 0, 0.6);
}

/* Luxury Range Slider Styling */
.lux-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    transition: background 0.3s;
    cursor: pointer;
    margin: 12px 0;
}

.lux-range-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.lux-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--lux-gold);
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 0 0 8px var(--lux-gold);
    transition: transform 0.1s, background-color 0.2s;
}

.lux-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--lux-gold-hover);
}

.lux-range-slider::-moz-range-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.lux-range-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 50%;
    background: var(--lux-gold);
    cursor: pointer;
    box-shadow: 0 0 8px var(--lux-gold);
    transition: transform 0.1s, background-color 0.2s;
}

.lux-range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--lux-gold-hover);
}

.w-full {
    width: 100%;
}

.hidden {
    display: none !important;
}

/* Toast styling */
.luxury-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #121212;
    border: 1px solid var(--border-gold);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100000;
    transform: translateY(150px);
    transition: transform var(--transition-lux);
}

.luxury-toast.active {
    transform: translateY(0);
}

.toast-indicator {
    width: 22px;
    height: 22px;
    background-color: var(--lux-gold);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-message h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lux-gold);
    margin-bottom: 2px;
}

.toast-message p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   6. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .nav-container {
        display: none; /* Hide top lists on mobile */
    }
    
    .mobile-nav-toggle {
        display: flex; /* Show Hamburger */
    }

    .luxury-header {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 42px;
    }
}

/* Mobile Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mob-nav-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.mob-nav-btn:hover {
    color: var(--lux-gold);
}

.mob-nav-btn.highlighted {
    color: var(--lux-gold);
    border: 1px solid var(--border-gold);
    padding: 10px 30px;
    border-radius: 4px;
}

/* Mobile responsive modal elements */
@media (max-width: 768px) {
    .responsive-booking-layout {
        flex-direction: column;
        height: auto;
    }
    
    .flex-modal-layout {
        flex-direction: column;
        height: auto;
        max-height: 480px;
        overflow-y: auto;
    }

    .modal-tabs-list {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-right: 0;
        padding-bottom: 12px;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
    }

    .modal-tab-trigger {
        padding: 6px 12px;
        font-size: 10px;
    }

    .modal-tab-trigger.active {
        border-left: none;
        border-bottom: 2px solid var(--lux-gold);
    }

    .modal-card {
        padding: 24px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-eyebrow {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 16px;
    }
    
    .top-announcement-bar {
        font-size: 8px;
        letter-spacing: 0.15em;
    }

    .btn-luxury-gold {
        padding: 12px 24px;
        font-size: 10px;
    }
}

/* ==========================================================================
   INLINE PORTAL SECTIONS STYLING
   ========================================================================== */
.luxury-section {
    padding: 120px 48px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 5;
}

.border-top-red {
    border-top: 1px solid rgba(197, 168, 128, 0.25);
}

.section-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-header {
    margin-bottom: 10px;
}

.section-badge {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--lux-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-cinzel);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.section-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.bio-main {
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 24px;
    border-left: 3px solid var(--lux-gold);
    padding-left: 20px;
}

.bio-sub {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.decorative-separator-red {
    width: 60px;
    height: 1px;
    background-color: var(--lux-gold);
    margin: 24px 0;
}

/* Slogan Section Card */
.slogan-bg {
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), rgba(0, 0, 0, 0.95)) !important;
}

.slogan-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 60px 40px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(197, 168, 128, 0.04);
    max-width: 900px;
    margin: 0 auto;
}

.slogan-text {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: #ffffff;
}

.slogan-sub {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lux-gold);
}

/* Section Flex Tabs */
.flex-section-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.section-tabs-list {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 24px;
}

.section-tab-trigger {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    color: rgba(255, 255, 255, 0.45);
    background: transparent;
    border: none;
    padding: 12px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.section-tab-trigger:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
}

.section-tab-trigger.active {
    color: var(--lux-gold);
    background-color: var(--lux-gold-light);
    border-left: 2px solid var(--lux-gold);
}

.section-tabs-content {
    flex-grow: 1;
}

.section-tab-pane {
    display: none;
    animation: fadeEffect 0.4s ease-out;
}

.section-tab-pane.active {
    display: block;
}

.section-tab-pane h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 400;
}

.section-tab-pane p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.luxury-alert-red {
    background: rgba(197, 168, 128, 0.03);
    border-left: 3px solid var(--lux-gold);
    border-radius: 4px;
    padding: 16px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.luxury-alert-red strong {
    color: var(--lux-gold);
    font-weight: 700;
}

/* Inline Section Responsive Styles */
@media (max-width: 992px) {
    .luxury-section {
        padding: 80px 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .flex-section-layout {
        flex-direction: column;
        gap: 32px;
    }
    
    .section-tabs-list {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 16px;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 8px;
    }
    
    .section-tab-trigger {
        padding: 10px 16px;
        font-size: 12px;
        display: inline-block;
    }
    
    .section-tab-trigger.active {
        border-left: none;
        border-bottom: 2px solid var(--lux-gold);
        border-radius: 4px 4px 0 0;
    }
    
    .bio-main {
        font-size: 20px;
    }
    
    .slogan-card {
        padding: 40px 20px;
    }
    
    .slogan-text {
        font-size: 24px;
    }
}

/* ==========================================================================
   PREMIUM PRELOADER & WHATSAPP OVERLAYS
   ========================================================================== */

/* Preloader Styling */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.preloader-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* Slight darkening overlay to make preloader content pop */
    z-index: 2;
    pointer-events: none;
}

.preloader-content {
    position: relative;
    z-index: 3; /* Render on top of the video and overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 400px;
    width: 90%;
}

.preloader-title {
    font-family: var(--font-cinzel);
    font-size: 84px;
    font-weight: 900;
    color: var(--lux-gold);
    letter-spacing: 0.15em;
    text-shadow: 0 0 30px rgba(197, 168, 128, 0.6);
    animation: pulseGold 2s infinite ease-in-out;
    line-height: 1;
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background-color: var(--lux-gold);
    box-shadow: 0 0 10px var(--lux-gold);
    animation: fillProgress 1.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.preloader-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-top: 10px;
}

@keyframes pulseGold {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 30px rgba(197, 168, 128, 0.6);
    }
    50% {
        transform: scale(1.03);
        text-shadow: 0 0 45px rgba(197, 168, 128, 0.9);
    }
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 168, 128, 0.2);
    z-index: 9999;
    transition: var(--transition-lux);
}

.whatsapp-float:hover {
    background-color: var(--lux-gold);
    color: #000000;
    transform: scale(1.1) translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 12px 40px rgba(197, 168, 128, 0.4);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.6s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(360deg);
}

/* ==========================================================================
   ABOUT SECTION SPLIT LAYOUT & LUXURY IMAGE CARD
   ========================================================================== */
.about-flex-container {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text-column {
    flex: 1.2;
}

.about-image-column {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 480px; /* Vertical portrait banner format */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(197, 168, 128, 0.2);
    background-color: #050505; /* Deep obsidian luxury background for contain-fit images */
    transition: transform 0.5s var(--transition-lux), box-shadow 0.5s var(--transition-lux);
}

.luxury-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(197, 168, 128, 0.15);
}

.about-slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.about-slide.active {
    opacity: 1;
    z-index: 2;
}

.about-luxury-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center; /* Neutral center fit */
    filter: sepia(12%) contrast(105%) brightness(95%);
    transition: filter 0.5s ease;
}

.luxury-image-wrapper:hover .about-luxury-img {
    filter: sepia(0%) contrast(110%) brightness(100%);
}

.image-caption-tag {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    color: var(--lux-gold);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 6px 16px;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: all 0.5s var(--transition-lux);
}

.luxury-image-wrapper:hover .image-caption-tag {
    letter-spacing: 0.25em;
    border-color: #ffffff;
    color: #ffffff;
}

/* Mini Slider Navigation Overlay */
.about-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s var(--transition-lux);
    transform: translateY(10px);
}

.luxury-image-wrapper:hover .about-slider-nav {
    opacity: 1;
    transform: translateY(0);
}

.about-slider-arrow {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border-gold);
    color: var(--lux-gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.about-slider-arrow:hover {
    background: var(--lux-gold);
    color: #000000;
    border-color: #ffffff;
    transform: scale(1.1);
}

.about-slider-dots {
    display: flex;
    gap: 8px;
    background: rgba(10, 10, 10, 0.85);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.about-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.25s ease;
}

.about-dot.active {
    background: var(--lux-gold);
    box-shadow: 0 0 6px var(--lux-gold);
    transform: scale(1.25);
}

/* Responsive adjustment for About Split */
@media (max-width: 992px) {
    .about-flex-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text-column, .about-image-column {
        width: 100%;
        flex: none;
    }
    
    .luxury-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   KARİZMA SAYFASI BÖLÜMÜ STYLES
   ========================================================================== */
.charisma-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.charisma-card {
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s var(--transition-lux), border-color 0.5s var(--transition-lux), box-shadow 0.5s var(--transition-lux);
}

.charisma-card:hover {
    transform: translateY(-8px);
    border-color: var(--lux-gold);
    box-shadow: 0 20px 45px rgba(197, 168, 128, 0.12);
}

.charisma-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Elegant vertical modeling format */
    overflow: hidden;
}

.charisma-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-lux), filter 0.8s var(--transition-lux);
    filter: grayscale(40%) brightness(90%);
}

.charisma-img.position-top {
    object-position: center top;
}

.charisma-card:hover .charisma-img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(100%);
}

.charisma-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(10px);
    transition: transform 0.5s var(--transition-lux);
    z-index: 2;
}

.charisma-card:hover .charisma-card-overlay {
    transform: translateY(0);
}

.charisma-tag {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 700;
    color: var(--lux-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.charisma-card-overlay h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.05em;
}

/* Responsive adjustment for Charisma grid */
@media (max-width: 1200px) {
    .charisma-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .charisma-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .charisma-grid-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   SOCIAL MEDIA SECTION STYLES
   ========================================================================== */
.social-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 60px 40px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(197, 168, 128, 0.04);
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.5s var(--transition-lux), border-color 0.5s var(--transition-lux), box-shadow 0.5s var(--transition-lux);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--lux-gold);
    box-shadow: 0 20px 45px rgba(197, 168, 128, 0.12);
}

.social-title-funny {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--lux-gold);
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.35);
}

.social-svg-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.4s ease;
}

.social-icon-btn:hover .social-svg-icon {
    transform: rotate(8deg);
}

@media (max-width: 600px) {
    .social-card {
        padding: 40px 20px;
    }
    .social-title-funny {
        font-size: 24px;
    }
    .social-icons-row {
        gap: 20px;
    }
    .social-icon-btn {
        width: 52px;
        height: 52px;
    }
    .social-svg-icon {
        width: 22px;
        height: 22px;
    }
}
