:root {
    --color-bg: #fdfbf7;
    --color-bg-light: #f6f3eb;
    --color-bg-lighter: #ece8dd;
    --color-text: #1a1612; /* Çok koyu espresso kahve, neredeyse siyah, üst düzey okunaklı */
    --color-text-muted: #3d352e; /* Koyu taba/taupe, çok yüksek kontrastlı ve okunaklı gri */
    --color-text-light: #4e433a; /* Okunaklı açık metin rengi */
    --color-dark: #1a1612;
    --color-primary: #a37c35; /* Premium Gold */
    --color-primary-hover: #866427;
    --color-secondary: #e0dcd0;
    --color-danger: #ff6b6b;
    --color-success: #20c997;
    --color-border: rgba(0, 0, 0, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--color-bg); color: var(--color-text); line-height: 1.6; overflow-x: hidden; animation: fadeInPage 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

@keyframes fadeInPage {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-primary); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-sm { font-size: 0.85rem; }
.text-muted { color: var(--color-text-muted); }

/* Typography */
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.subtitle { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 2rem; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: rgba(253, 251, 247, 0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--color-primary); font-weight: 300; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--color-primary); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 1.5rem; border-radius: 6px; font-family: var(--font-heading);
    font-weight: 500; cursor: pointer; transition: var(--transition); border: none; font-size: 1rem;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-primary { background-color: var(--color-primary); color: var(--color-bg); }
.btn-primary:hover { background-color: var(--color-primary-hover); transform: translateY(-2px); }
.btn-secondary { background-color: var(--color-bg-light); color: var(--color-text); border: 1px solid var(--color-border); }
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }
.cta-button { padding: 0.6rem 1.5rem; background: transparent; border: 1px solid var(--color-primary); color: var(--color-primary); border-radius: 30px; font-weight: 500; }
.cta-button:hover { background: var(--color-primary); color: var(--color-bg); }

/* Scroll to Top */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; border-radius: 50%; background: var(--color-primary); color: var(--color-bg); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 999; box-shadow: 0 4px 15px rgba(230,200,117,0.3); }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--color-primary-hover); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(230,200,117,0.4); }

/* Navbar Scroll State */
.navbar.scrolled { background: rgba(253, 251, 247, 0.97); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

/* Main Application Layout */
.app-main { padding-top: 80px; }
.section { padding: 6rem 0; }
.bg-darker { background-color: var(--color-bg-light); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.bg-gradient { background: linear-gradient(135deg, #f6f3eb 0%, #ece8dd 50%, #e0dcd0 100%); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.section-badge { display: inline-block; padding: 0.4rem 1.2rem; border-radius: 30px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; border: 1px solid; margin-bottom: 1rem; }

/* Mobile Menu */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 4px; }
.mobile-menu-toggle span { display: block; width: 25px; height: 2px; background: var(--color-text); transition: var(--transition); }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px) translateX(5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px) translateX(5px); }

/* Hero Dashboard - Attention Grabbing */
.hero-dashboard { position: relative; height: 90vh; min-height: 700px; display: flex; align-items: center; padding: 0 5%; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 25s ease-in-out infinite alternate; }
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(253, 251, 247, 0.97) 0%, rgba(253, 251, 247, 0.8) 50%, rgba(253, 251, 247, 0.4) 100%); }
.hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

.dashboard-widgets { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; width: 100%; max-width: 1400px; margin: 0 auto; z-index: 2; position: relative; }
.widget { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px); border: 1px solid var(--color-border); padding: 3rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.hero-main-widget h3 { font-size: 3rem; margin-bottom: 1rem; color: var(--color-text); line-height: 1.15; }
.text-gold { color: var(--color-primary); }
.typed-text { display: inline-block; border-right: 2px solid var(--color-primary); animation: blink 1s infinite; }
@keyframes blink { 0%,100% { border-color: var(--color-primary); } 50% { border-color: transparent; } }
.widget p { font-size: 1.1rem; color: var(--color-text-muted); }
.hero-badge-glow { display: inline-block; padding: 0.4rem 1.2rem; background: rgba(230,200,117,0.1); border: 1px solid rgba(230,200,117,0.3); border-radius: 30px; font-size: 0.8rem; color: var(--color-primary); letter-spacing: 3px; font-weight: 600; margin-bottom: 1.5rem; animation: glowPulse 3s infinite; }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 5px rgba(230,200,117,0.2); } 50% { box-shadow: 0 0 20px rgba(230,200,117,0.4); } }
.hero-stats { display: flex; gap: 2rem; margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.hero-stat { text-align: center; }
.hero-stat span { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-primary); display: block; }
.hero-stat small { font-size: 0.8rem; color: var(--color-text-muted); }
.hero-cta-row { display: flex; gap: 1rem; }

.quick-actions { display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 2rem; background: transparent; border: none; }
.action-card { background: rgba(255,255,255,0.05); border: 1px solid var(--color-border); padding: 1.5rem; border-radius: 12px; display: flex; align-items: center; gap: 1rem; color: var(--color-text); font-size: 1.1rem; cursor: pointer; transition: var(--transition); }
.action-card:hover { background: rgba(230, 200, 117, 0.1); border-color: var(--color-primary); transform: translateX(10px); }
.action-card .icon { font-size: 1.5rem; }



/* Video Showcase Section */
.video-showcase-section { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 50%, var(--color-bg) 100%); border-top: 1px solid var(--color-border); }

/* Video Hero Player */
.video-hero { max-width: 1000px; margin: 0 auto 4rem; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
.video-hero-wrapper { width: 100%; position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; border: 2px solid rgba(163,124,53,0.3); transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.video-hero-wrapper:hover { border-color: rgba(196,153,66,0.4); box-shadow: 0 20px 60px rgba(196,153,66,0.08); }
.video-hero-thumb { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; }
.video-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.video-hero-wrapper:hover .video-hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%); }

.video-play-btn { width: 88px; height: 88px; border-radius: 50%; background: rgba(196,153,66,0.9); border: none; color: #0d0d12; cursor: pointer; display: flex; align-items: center; justify-content: center; padding-left: 5px; transition: var(--transition); position: relative; z-index: 2; }
.video-play-btn::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(196,153,66,0.4); animation: videoPulse 2s infinite; z-index: -1; }
.video-play-btn:hover { background: #e6c875; transform: scale(1.1); }
@keyframes videoPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.8); opacity: 0; } }

.video-hero-badge { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,0.7); backdrop-filter: blur(10px); padding: 0.5rem 1.2rem; border-radius: 6px; font-size: 0.8rem; color: var(--color-primary); letter-spacing: 1px; border: 1px solid rgba(196,153,66,0.3); font-family: var(--font-heading); font-weight: 500; z-index: 3; }
.video-hero-duration { position: absolute; bottom: 16px; right: 16px; background: rgba(0,0,0,0.8); padding: 0.4rem 0.8rem; border-radius: 4px; font-size: 0.85rem; color: #fff; display: flex; align-items: center; gap: 0.4rem; z-index: 3; font-family: var(--font-heading); }

.video-hero-info { text-align: center; padding: 2rem 0 0; }
.video-hero-info h3 { font-size: 1.6rem; color: var(--color-text); margin-bottom: 0.8rem; }
.video-hero-info p { color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 700px; margin: 0 auto; }

/* Video Grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.video-card { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; transition: var(--transition); cursor: pointer; }
.video-card:hover { transform: translateY(-8px); border-color: rgba(196,153,66,0.5); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.video-card-thumb { position: relative; overflow: hidden; }
.video-card-thumb img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.video-card:hover .video-card-thumb img { transform: scale(1.08); }
.video-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.video-card:hover .video-card-overlay { opacity: 1; }
.video-card-play { width: 56px; height: 56px; border-radius: 50%; background: rgba(196,153,66,0.9); border: none; color: #0d0d12; cursor: pointer; display: flex; align-items: center; justify-content: center; padding-left: 3px; transition: var(--transition); }
.video-card-play:hover { background: #e6c875; transform: scale(1.1); }
.video-card-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.85); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.8rem; color: #fff; font-family: var(--font-heading); }
.video-card-info { padding: 1.5rem; }
.video-card-info h4 { font-size: 1.15rem; color: var(--color-text); margin-bottom: 0.5rem; font-family: var(--font-heading); }
.video-card-info p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 0.8rem; }
.video-card-tag { display: inline-block; font-size: 0.75rem; color: #c49942; background: rgba(196,153,66,0.1); padding: 0.25rem 0.7rem; border-radius: 20px; border: 1px solid rgba(196,153,66,0.2); }

/* Video Highlights Bar */
.video-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; background: rgba(196,153,66,0.04); border: 1px solid rgba(196,153,66,0.12); border-radius: 12px; padding: 2rem; }
.video-highlight-item { display: flex; align-items: center; gap: 1rem; }
.vh-icon { font-size: 1.6rem; min-width: 40px; height: 40px; background: rgba(196,153,66,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); color: #c49942; font-weight: 700; font-size: 1rem; }
.video-highlight-item strong { display: block; font-size: 0.95rem; color: var(--color-text); font-family: var(--font-heading); }
.video-highlight-item span { font-size: 0.8rem; color: var(--color-text-muted); }

/* Video Modal */
.video-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 12, 0.98); backdrop-filter: blur(10px); z-index: 3000; align-items: center; justify-content: center; }
.video-modal.show { display: flex; animation: fadeIn 0.3s; }
.video-modal-content { width: 100vw; height: 100vh; max-width: none; position: relative; background: #000; display: flex; flex-direction: column; }
.video-modal-player { flex: 1; display: flex; flex-direction: column; width: 100%; height: 100%; }
.video-modal-close { position: absolute; top: 20px; right: 20px; background: rgba(0,0,0,0.5); border: none; color: #fff; font-size: 2.5rem; cursor: pointer; transition: var(--transition); z-index: 50; line-height: 1; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.video-modal-close:hover { color: var(--color-primary); background: rgba(0,0,0,0.8); }

/* Cinematic Slideshow Player */
.cin-player { position: relative; width: 100%; flex: 1; background: #000; border-radius: 0; overflow: hidden; border: none; }
.cin-slides { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.cin-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.cin-slide.active { opacity: 1; z-index: 1; }
.cin-zoom-in { animation: cinZoomIn 15s linear forwards; }
.cin-zoom-out { animation: cinZoomOut 15s linear forwards; transform: scale(1.15); }
@keyframes cinZoomIn { from { transform: scale(1); } to { transform: scale(1.15); } }
@keyframes cinZoomOut { from { transform: scale(1.15); } to { transform: scale(1); } }
.cin-vignette { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%); z-index: 2; pointer-events: none; }
.cin-text-overlay { position: absolute; bottom: 20%; left: 0; width: 100%; text-align: center; z-index: 3; pointer-events: none; }
.cin-text-main { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.8); opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; margin-bottom: 0.5rem; }
.cin-text-sub { font-family: var(--font-body); font-size: 1.2rem; color: #e6c875; text-shadow: 0 2px 10px rgba(0,0,0,0.8); opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.cin-text-visible { opacity: 1; transform: translateY(0); }
.cin-player-badge { position: absolute; top: 20px; left: 20px; z-index: 3; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.7); padding: 0.4rem 1rem; border-radius: 4px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); }
.cin-big-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(230,200,117,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 4; color: #000; padding-left: 6px; box-shadow: 0 0 30px rgba(230,200,117,0.5); transition: var(--transition); }
.cin-big-play:hover { transform: translate(-50%, -50%) scale(1.1); background: #fce8a1; }
.cin-controls { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem 1.5rem 1rem; background: linear-gradient(to top, rgba(163, 124, 53, 0.85), transparent); display: flex; align-items: center; gap: 1rem; z-index: 4; }
.cin-ctrl-btn { background: none; border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 5px; transition: color 0.3s; }
.cin-ctrl-btn:hover { color: var(--color-primary); }
.sim-progress { flex-grow: 1; height: 6px; background: rgba(255,255,255,0.3); border-radius: 4px; cursor: pointer; position: relative; overflow: hidden; }
.sim-progress-bar { height: 100%; width: 0%; background: #e6c875; border-radius: 4px; transition: width 0.1s linear; }
.sim-time { color: #fff; font-size: 0.85rem; font-family: var(--font-heading); min-width: 80px; text-align: right; font-weight: 500; }
.video-modal-info { display: none; }
.video-modal-info h3 { font-size: 1.4rem; color: var(--color-primary); margin-bottom: 0.5rem; }
.video-modal-info p { font-size: 0.95rem; color: var(--color-text-muted); }
.tabs-container { background: var(--color-bg-light); border-radius: 12px; border: 1px solid var(--color-border); overflow: hidden; }
.tabs-header { display: flex; border-bottom: 1px solid var(--color-border); background: var(--color-bg-lighter); }
.tab-btn { flex: 1; padding: 1.5rem; background: transparent; border: none; color: var(--color-text-muted); font-family: var(--font-heading); font-size: 1.1rem; cursor: pointer; transition: var(--transition); border-bottom: 2px solid transparent; }
.tab-btn:hover { color: var(--color-text); background: rgba(255,255,255,0.02); }
.tab-btn.active { color: var(--color-primary); border-bottom-color: var(--color-primary); background: var(--color-bg-light); }
.tabs-content { padding: 3rem; }
.tab-panel { display: none; animation: fadeIn 0.5s; }
.tab-panel.active { display: block; }
.panel-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.panel-img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.placeholder-img { width: 100%; height: 300px; background: var(--color-bg-lighter); border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px dashed var(--color-border); color: var(--color-text-muted); font-size: 1.2rem; }

.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; color: var(--color-text-muted); }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--color-primary); }

/* Brand Filter App */
.brand-app { display: grid; grid-template-columns: 250px 1fr; gap: 3rem; }
.filter-sidebar { background: var(--color-bg-lighter); padding: 2rem; border-radius: 12px; border: 1px solid var(--color-border); align-self: start; }
.filter-group { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.filter-group label { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; color: var(--color-text-muted); transition: var(--transition); }
.filter-group label:hover { color: var(--color-text); }
.filter-group input[type="radio"] { accent-color: var(--color-primary); width: 18px; height: 18px; }

.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.brand-card { background: var(--color-bg-lighter); border: 1px solid var(--color-border); border-radius: 8px; padding: 2rem; text-align: center; transition: var(--transition); cursor: pointer; animation: fadeIn 0.4s; }
.brand-card:hover { border-color: var(--color-primary); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.brand-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.brand-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.5rem; }
.brand-cat { font-size: 0.85rem; color: var(--color-primary); padding: 0.2rem 0.8rem; background: rgba(230, 200, 117, 0.1); border-radius: 20px; display: inline-block; }

/* Çeyiz Promo */
.ceyiz-promo { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ceyiz-promo-content h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.ceyiz-promo-content p { color: var(--color-text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.ceyiz-highlights { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1rem; }
.ceyiz-highlights span { background: rgba(32,201,151,0.08); border: 1px solid rgba(32,201,151,0.2); color: var(--color-success); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.9rem; }

/* App Forms & Booking */
.booking-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-cards { display: grid; gap: 1rem; }
.c-card { background: var(--color-bg-light); padding: 1.5rem; border-radius: 8px; border-left: 3px solid var(--color-primary); }
.c-card strong { display: block; color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 0.3rem; }

.booking-form-wrapper { background: var(--color-bg-light); padding: 3rem; border-radius: 16px; border: 1px solid var(--color-border); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.app-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.app-form .form-group { margin-bottom: 1.5rem; }
.app-form label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--color-text-muted); }
.app-form input, .app-form select { width: 100%; padding: 0.8rem 1rem; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 6px; color: var(--color-text); font-family: var(--font-body); font-size: 1rem; transition: var(--transition); }
.app-form input:focus, .app-form select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 2px rgba(230, 200, 117, 0.2); }
.form-success { margin-top: 1rem; padding: 1rem; background: rgba(32, 201, 151, 0.1); color: var(--color-success); border-radius: 6px; text-align: center; border: 1px solid rgba(32, 201, 151, 0.2); }
.hidden { display: none; }

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 2000; align-items: center; justify-content: center; }
.modal.show { display: flex; animation: fadeIn 0.3s; }
.modal-content { background: var(--color-bg-light); padding: 3rem; border-radius: 12px; width: 100%; max-width: 450px; position: relative; border: 1px solid var(--color-border); }
.close-btn { position: absolute; top: 1rem; right: 1.5rem; font-size: 1.5rem; cursor: pointer; color: var(--color-text-muted); transition: var(--transition); }
.close-btn:hover { color: var(--color-danger); }
.modal-footer { margin-top: 1.5rem; text-align: center; font-size: 0.9rem; color: var(--color-text-muted); }
.modal-footer a { color: var(--color-primary); }

/* Utilities & Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Prova Evi Modeli (Image Match) */
.prova-evi-section { background-color: var(--color-bg-light); padding: 6rem 0; border-top: 1px solid var(--color-border); }
.prova-badge { color: var(--color-primary); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; display: block; margin-bottom: 1.5rem; }
.prova-title { font-size: 3.5rem; font-weight: 600; color: var(--color-primary); margin-bottom: 2rem; font-family: var(--font-heading); }
.prova-title em { font-style: italic; color: var(--color-text); font-weight: 500; }
.prova-desc { max-width: 900px; font-size: 1.05rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 3rem; }
.prova-hero-img { margin-bottom: 5rem; border-radius: 16px; overflow: hidden; }
.prova-hero-img .pf-image { border-radius: 16px; }
.prova-hero-img .pf-image img { border-radius: 16px; aspect-ratio: 21/9; object-fit: cover; }
.prova-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prova-card { background-color: var(--color-bg); border: 1px solid var(--color-border); border-left: 3px solid var(--color-primary); border-radius: 8px; padding: 2.5rem 2rem; transition: var(--transition); }
.prova-card:hover { transform: translateY(-5px); background-color: var(--color-bg-lighter); border-color: var(--color-primary); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.p-icon { color: var(--color-primary); margin-bottom: 1.2rem; }
.prova-card h3 { font-size: 1.3rem; color: var(--color-text); margin-bottom: 0.8rem; font-weight: 600; }
.prova-card p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.5; margin: 0; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

.prova-details { margin-top: 8rem; }
.prova-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 8rem; }
.prova-feature-row.reverse .pf-content { order: 2; }
.prova-feature-row.reverse .pf-image { order: 1; }
.pf-num { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: rgba(196, 153, 66, 0.15); display: block; line-height: 1; margin-bottom: -1rem; position: relative; z-index: 0; }
.pf-content h3 { position: relative; z-index: 1; font-size: 2.2rem; color: var(--color-text); margin-bottom: 1.5rem; }
.pf-content p { color: var(--color-text-muted); font-size: 1.1rem; line-height: 1.8; }
.pf-image { position: relative; overflow: hidden; border-radius: 12px; }
.pf-image img { width: 100%; display: block; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.05); }
.pf-image::after {
    content: 'ALISCE LIFE';
    position: absolute; bottom: 16px; right: 16px;
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px;
    color: #c49942; background: rgba(253, 251, 247, 0.75); backdrop-filter: blur(8px);
    padding: 0.5rem 1.2rem; border-radius: 6px; border: 1px solid rgba(196, 153, 66, 0.3);
    pointer-events: none; z-index: 2;
}

/* Clickable Card Link Styles */
a.prova-card { display: block; text-decoration: none; color: inherit; }
a.prova-card::after { content: 'Detaylı İncele →'; display: block; margin-top: 1rem; font-size: 0.85rem; color: #c49942; opacity: 0; transition: var(--transition); }
a.prova-card:hover::after { opacity: 1; }

/* Detail Page Styles */
.detail-hero { position: relative; height: 60vh; min-height: 400px; display: flex; align-items: flex-end; }
.detail-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.detail-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(253,251,247,1) 0%, rgba(253,251,247,0.4) 50%, rgba(253,251,247,0.2) 100%); }
.detail-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; width: 100%; }
.detail-hero-content .pf-num { font-size: 5rem; color: rgba(196,153,66,0.15); line-height: 1; }
.detail-hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 600; color: var(--color-text); margin-bottom: 1rem; }
.detail-hero-content .lead { font-size: 1.2rem; color: var(--color-text-muted); max-width: 600px; }
.back-link { display: inline-block; margin-bottom: 1rem; font-size: 0.95rem; color: var(--color-primary); border: 1px solid rgba(196,153,66,0.3); padding: 0.4rem 1rem; border-radius: 4px; }
.back-link:hover { background: var(--color-primary); color: var(--color-bg); }

.detail-body { max-width: 900px; margin: 0 auto; }
.detail-body h2 { margin-bottom: 1.5rem; }
.detail-body > p { color: var(--color-text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 3rem; }
.detail-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.detail-feature-card { background: var(--color-bg-lighter); border: 1px solid var(--color-border); border-radius: 8px; padding: 2rem; }
.detail-feature-card h4 { color: var(--color-primary); margin-bottom: 0.8rem; font-size: 1.1rem; }
.detail-feature-card p { color: var(--color-text-muted); font-size: 0.95rem; margin: 0; }
.detail-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

/* FAQ Styles */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 3rem; }
.faq-category h2 { color: var(--color-primary); font-size: 1.6rem; margin-bottom: 0.5rem; }
.faq-subtitle { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 2rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1rem; }
.faq-item { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 8px; margin-bottom: 1rem; overflow: hidden; }
.faq-question { padding: 1.2rem 1.5rem; font-weight: 500; font-family: var(--font-heading); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; color: var(--color-text); transition: var(--transition); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question:after { content: '+'; font-size: 1.5rem; color: var(--color-primary); font-weight: 300; transition: transform 0.3s ease; }
.faq-item[open] .faq-question:after { transform: rotate(45deg); }
.faq-item[open] .faq-question { background: rgba(230, 200, 117, 0.05); }
.faq-answer { padding: 0 1.5rem 1.5rem; color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.6; border-top: 1px solid transparent; }
.faq-item[open] .faq-answer { border-top-color: var(--color-border); padding-top: 1.2rem; }

/* Roadmap Timeline (Video Gallery) */
.roadmap-container { position: relative; max-width: 900px; margin: 0 auto; padding: 2rem 0; }
.roadmap-container::before { content: ''; position: absolute; top: 0; left: 30px; height: 100%; width: 2px; background: linear-gradient(to bottom, var(--color-primary), transparent); opacity: 0.3; }
.roadmap-item { position: relative; padding-left: 80px; margin-bottom: 4rem; }
.roadmap-item::before { content: ''; position: absolute; left: 21px; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--color-bg); border: 3px solid var(--color-primary); z-index: 2; box-shadow: 0 0 15px rgba(230, 200, 117, 0.4); }
.roadmap-video-card { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.roadmap-video-card:hover { border-color: rgba(230, 200, 117, 0.5); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.roadmap-video-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; display: flex; align-items: center; justify-content: center; }
.roadmap-video-wrapper img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity 0.4s; }
.roadmap-video-wrapper:hover img { opacity: 0.4; }
.play-btn { position: absolute; width: 64px; height: 64px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-bg); font-size: 24px; cursor: pointer; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); padding-left: 5px; }
.roadmap-video-wrapper:hover .play-btn { transform: scale(1.15); }
.roadmap-content { padding: 1.8rem; }
.roadmap-content h3 { color: var(--color-primary); font-size: 1.3rem; margin-bottom: 0.8rem; font-family: var(--font-heading); }
.roadmap-content p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* Animated Coded Video Overrides (Dinamik Hareketler) */
.coded-video-container.is-playing .cv-bg { opacity: 0.3 !important; animation: kenBurns 25s infinite alternate ease-in-out !important; }
.coded-video-container.is-playing .cv-play-btn { opacity: 0 !important; }
.coded-video-container.is-playing .cv-text { opacity: 1 !important; transform: translateY(0) !important; animation: textFloat 5s infinite ease-in-out 1.5s !important; }
.coded-video-container.is-playing .cv-text-2 { opacity: 1 !important; transform: translateY(0) !important; animation: textFloat 5s infinite ease-in-out 2s !important; }
.coded-video-container .cv-light-overlay { position: absolute; inset: -50%; background: radial-gradient(circle, rgba(230,200,117,0.15) 0%, transparent 60%); opacity: 0; pointer-events: none; z-index: 3; transition: opacity 1s; }
.coded-video-container.is-playing .cv-light-overlay { opacity: 1; animation: lightMove 10s infinite linear; }

@keyframes kenBurns { 0% { transform: scale(1.05) translate(0, 0); } 100% { transform: scale(1.25) translate(-3%, -2%); } }
@keyframes textFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); text-shadow: 0 10px 15px rgba(0,0,0,0.8); } 100% { transform: translateY(0); } }
@keyframes lightMove { 0% { transform: rotate(0deg) translate(0, 0); } 50% { transform: rotate(180deg) translate(5%, 5%); } 100% { transform: rotate(360deg) translate(0, 0); } }

/* Footer */
.footer { background: var(--color-bg); border-top: 1px solid var(--color-border); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand .logo { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.footer-brand p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.6; max-width: 300px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--color-primary); margin-bottom: 1rem; font-weight: 600; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--color-primary); }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--color-text-muted); font-size: 0.85rem; margin: 0; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: var(--color-bg-lighter); border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); font-size: 1rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--color-primary); color: var(--color-bg); border-color: var(--color-primary); }

/* Brand Marquee Scrolling Banner */
.brand-marquee-section { background: var(--color-primary); padding: 1.5rem 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); }
.brand-marquee { display: flex; overflow: hidden; width: 100%; }
.marquee-content { display: flex; animation: marquee 30s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
.m-item { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--color-bg); text-transform: uppercase; letter-spacing: 2px; display: inline-block; padding: 0 2rem; cursor: pointer; transition: color 0.3s; }
.m-item:hover { color: #fff; }
.m-dot { color: var(--color-bg); font-size: 1.5rem; opacity: 0.5; display: inline-block; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Events & Social Media Page */
.social-hero { position: relative; height: 60vh; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, rgba(163,124,53,0.1) 0%, var(--color-bg) 100%); overflow: hidden; border-bottom: 1px solid var(--color-border); }
.social-hero::before { content: ''; position: absolute; width: 200%; height: 200%; background: radial-gradient(circle, rgba(230,200,117,0.05) 0%, transparent 50%); animation: rotatePulse 20s linear infinite; }
@keyframes rotatePulse { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.social-hero-content { position: relative; z-index: 1; max-width: 800px; }

.countdown-container { display: flex; gap: 1.5rem; justify-content: center; margin: 2.5rem 0; }
.cd-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(230,200,117,0.2); padding: 1.5rem; border-radius: 12px; min-width: 100px; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cd-num { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--color-primary); line-height: 1; margin-bottom: 0.5rem; }
.cd-label { font-size: 0.8rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 2px; }

.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.event-card { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 16px; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-10px); border-color: var(--color-primary); box-shadow: 0 15px 35px rgba(230,200,117,0.15); }
.event-date { background: var(--color-primary); color: #000; padding: 1rem; text-align: center; font-family: var(--font-heading); }
.event-date .day { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.event-date .month { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.event-details { padding: 2rem; flex-grow: 1; }
.event-tag { font-size: 0.75rem; background: rgba(255,255,255,0.05); padding: 0.3rem 0.8rem; border-radius: 20px; color: var(--color-primary); display: inline-block; margin-bottom: 1rem; border: 1px solid rgba(230,200,117,0.3); }
.event-title { font-size: 1.3rem; margin-bottom: 0.8rem; }
.event-desc { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; }
.event-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: auto; }
.event-time { font-size: 0.85rem; color: var(--color-text-muted); display: flex; align-items: center; gap: 0.5rem; }

.social-wall { columns: 3 300px; column-gap: 1.5rem; margin-top: 3rem; }
.social-post { break-inside: avoid; margin-bottom: 1.5rem; background: var(--color-bg-lighter); border-radius: 12px; overflow: hidden; border: 1px solid var(--color-border); transition: var(--transition); cursor: pointer; position: relative; }
.social-post:hover { transform: scale(1.02); z-index: 2; box-shadow: 0 15px 30px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.2); }
.post-img { width: 100%; display: block; }
.post-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: var(--transition); padding: 2rem; text-align: center; }
.social-post:hover .post-overlay { opacity: 1; }
.post-icon { font-size: 2rem; color: #fff; margin-bottom: 1rem; }
.post-likes { color: #fff; font-weight: 600; font-family: var(--font-heading); display: flex; align-items: center; gap: 0.5rem; }
.post-caption { font-size: 0.85rem; color: #ccc; margin-top: 0.5rem; }

.instagram-feed-banner { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); padding: 3px; border-radius: 16px; margin-top: 4rem; }
.insta-inner { background: var(--color-bg); padding: 3rem; border-radius: 14px; text-align: center; }
.insta-inner h3 { font-size: 2rem; margin-bottom: 1rem; }
.insta-inner p { color: var(--color-text-muted); margin-bottom: 2rem; }
.insta-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: #000; padding: 0.8rem 2rem; border-radius: 30px; font-weight: 600; transition: var(--transition); }
.insta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* Responsive */
@media (max-width: 992px) {
    .dashboard-widgets { grid-template-columns: 1fr; }
    .panel-layout { grid-template-columns: 1fr; }
    .brand-app { grid-template-columns: 1fr; }
    .booking-container { grid-template-columns: 1fr; }
    .prova-grid { grid-template-columns: repeat(2, 1fr); }
    .prova-feature-row { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
    .prova-feature-row.reverse .pf-content { order: 1; }
    .prova-feature-row.reverse .pf-image { order: 2; }
    .ceyiz-promo { grid-template-columns: 1fr; gap: 2rem; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-highlights { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav-links.mobile-open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(253, 251, 247, 0.97); backdrop-filter: blur(20px); z-index: 999; justify-content: center; align-items: center; gap: 2rem; }
    .nav-links.mobile-open a { font-size: 1.4rem; }
    .widget h3 { font-size: 2rem; }
    .hero-dashboard { padding: 80px 20px 20px; height: auto; }
    .hero-main-widget h3 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-cta-row { flex-direction: column; }
    .tabs-header { flex-direction: column; }
    .app-form .form-row { grid-template-columns: 1fr; }
    .prova-grid { grid-template-columns: 1fr; }
    .prova-title { font-size: 2.5rem; }
    .detail-hero-content h1 { font-size: 2.2rem; }
    .video-grid { grid-template-columns: 1fr; }
    .video-highlights { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem; }
    .video-play-btn { width: 64px; height: 64px; }
    .video-play-btn svg { width: 24px; height: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
    .roadmap-container::before { left: 20px; }
    .roadmap-item { padding-left: 55px; margin-bottom: 3rem; }
    .roadmap-item::before { left: 11px; }
}

/* --- Marquee / Scrolling Banner --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 3rem 0;
    position: relative;
}
.marquee-track {
    display: flex;
    width: calc(300px * 14 + 1.5rem * 14); /* 7 images duplicated */
    animation: scrollMarquee 35s linear infinite;
    gap: 1.5rem;
    padding-left: 1.5rem;
}
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-item {
    width: 300px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid rgba(196,153,66,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.marquee-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(230, 200, 117, 0.4);
    z-index: 10;
}
.marquee-item:hover img {
    transform: scale(1.1);
}
.marquee-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(163,124,53,0.95));
    padding: 3rem 1.5rem 1.5rem;
    color: white;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    font-size: 1.2rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}
.marquee-item:hover .marquee-overlay {
    transform: translateY(0);
    opacity: 1;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 7 - 1.5rem * 7)); }
}

/* --- Dijital Deneyim ve Ağ Alanı --- */
.professional-event-area {
    background: #ffffff;
    border-radius: 0;
    padding: 5rem 0;
    margin: 6rem 0;
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.professional-bg-blur {
    position: absolute;
    top: 50%; right: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230, 200, 117, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}
.professional-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.professional-text h3 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.professional-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.professional-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}
.p-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--color-text);
    font-weight: 500;
}
.p-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
}
.professional-image-showcase {
    position: relative;
    height: 600px;
}
.p-img-main {
    position: absolute;
    top: 0; right: 0;
    width: 80%; height: 80%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.p-img-main img {
    width: 100%; height: 100%; object-fit: cover;
}
.p-img-secondary {
    position: absolute;
    bottom: 0; left: 0;
    width: 60%; height: 60%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
    border: 10px solid white;
}
.p-img-secondary img {
    width: 100%; height: 100%; object-fit: cover;
}

@media (max-width: 768px) {
    .professional-content { grid-template-columns: 1fr; gap: 3rem; }
    .professional-image-showcase { height: 400px; margin-top: 2rem; }
}
