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

:root {
    --primary: #0a4da2;
    --primary-dark: #083a7a;
    --primary-light: #1a6fd4;
    --secondary: #c8102e;
    --accent: #d4a017;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --green: #198754;
    --orange: #fd7e14;
    --purple: #6f42c1;
    --teal: #20c997;
    --red: #dc3545;
    --navy: #0d2137;
    --gold: #d4a017;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* site.js modal değişkenleri */
    --card: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --bg: #f8fafc;
    --border: #e2e8f0;
    --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
    --primary-light: #eff6ff;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== NAVBAR (dubai.ae 2-row transparent layout) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Top row: logo left, search+actions right */
.nav-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 8px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Text-based logo (sydney.com style) */
.logo-text-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
    transition: color 0.4s ease;
}

.logo-dot {
    color: #00b4d8;
    font-weight: 900;
}

.logo-com {
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    transition: color 0.4s ease;
}

/* Scrolled: dark logo */
.navbar.scrolled .logo-text-brand {
    color: var(--gray-900);
}

.navbar.scrolled .logo-com {
    color: var(--gray-500);
}

/* Scrolled state: dark text for all nav elements */
.navbar.scrolled .nav-search i {
    color: var(--gray-600);
}

.navbar.scrolled .nav-search input {
    color: var(--gray-800);
}

.navbar.scrolled .nav-search input::placeholder {
    color: var(--gray-500);
}

.navbar.scrolled .nav-search {
    border-bottom-color: var(--gray-300);
}

.navbar.scrolled .nav-search:focus-within {
    border-bottom-color: var(--primary);
}

.navbar.scrolled .nav-icon-btn {
    border-color: var(--gray-300);
    color: var(--gray-600);
}

.navbar.scrolled .nav-icon-btn:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.navbar.scrolled .lang-btn {
    color: var(--gray-700);
}

.navbar.scrolled .lang-btn:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.navbar.scrolled .hamburger span {
    background: var(--gray-800);
}

.navbar.scrolled .nav-bottom-row {
    border-top-color: var(--gray-200);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--gray-900);
}

.navbar.scrolled .nav-links a::after {
    background: var(--primary);
}

.nav-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Inline search (dubai.ae style) */
.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 6px 0;
    transition: var(--transition);
}

.nav-search:focus-within {
    border-bottom-color: var(--white);
}

.nav-search i {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.nav-search input {
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    width: 120px;
    transition: width 0.3s ease;
}

.nav-search input::placeholder {
    color: rgba(255,255,255,0.4);
}

.nav-search input:focus {
    width: 200px;
}

/* Nav search dropdown */
.nav-search {
    position: relative;
}
.nav-search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 300px;
    background: #1a2744;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    z-index: 2000;
}
.nav-search-dropdown.open {
    display: block;
}
.nav-search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    transition: background 0.15s;
}
.nav-search-result:last-child {
    border-bottom: none;
}
.nav-search-result:hover {
    background: rgba(255,255,255,0.07);
}
.nav-search-result-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}
.nav-search-result-body {
    flex: 1;
    min-width: 0;
}
.nav-search-result-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-search-result-meta {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}
.nav-search-empty {
    padding: 14px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.nav-search-loading {
    padding: 14px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Accessibility button */
.nav-icon-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    background: none;
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-icon-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* Login button */
.nav-auth {
    display: flex;
    align-items: center;
}

.nav-login-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-login-btn i {
    font-size: 0.8rem;
}

.nav-login-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

.navbar.scrolled .nav-login-btn {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.navbar.scrolled .nav-login-btn:hover {
    background: var(--gray-100);
    border-color: var(--primary);
    color: var(--primary);
}

/* Logged-in user chip */
.nav-user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-user-chip:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.5);
}

.nav-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.navbar.scrolled .nav-user-chip {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.navbar.scrolled .nav-user-chip:hover {
    background: var(--gray-100);
}

/* Nav user dropdown menu */
.nav-user-menu {
    position: relative;
}

.nav-user-chevron {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.nav-user-chevron.rotated {
    transform: rotate(180deg);
}

.nav-user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 210px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
    z-index: 500;
    animation: dropdownIn 0.18s ease;
}

.nav-user-dropdown.open {
    display: block;
}

@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 12px;
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f7 100%);
}

.nav-dropdown-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary, #1a3a6b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.nav-dropdown-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a2640;
    line-height: 1.2;
}

.nav-dropdown-label {
    font-size: 0.72rem;
    color: #8a96a8;
    margin-top: 1px;
}

.nav-dropdown-divider {
    height: 1px;
    background: #f0f2f5;
    margin: 2px 0;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #3a4557;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
    text-align: left;
}

.nav-dropdown-item i {
    width: 16px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.82rem;
}

.nav-dropdown-item:hover {
    background: #f4f6fa;
    color: var(--primary, #1a3a6b);
}

.nav-dropdown-item:hover i {
    opacity: 1;
}

.nav-dropdown-logout {
    color: #e53935;
}

.nav-dropdown-logout:hover {
    background: #fff5f5;
    color: #c62828;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Bottom row: navigation links */
.nav-bottom-row {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    display: block;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--white);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: none;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: scaleX(1);
}

/* İçerik Gönder - öne çıkan link */
.nav-link-highlight {
    display: flex !important;
    align-items: center;
    gap: 5px;
}
.nav-link-highlight i {
    font-size: 0.75rem;
    opacity: 0.85;
}
.navbar:not(.scrolled) .nav-link-highlight {
    background: rgba(255,255,255,0.12) !important;
    border-radius: 6px;
    margin: 6px 4px !important;
    padding: 8px 14px !important;
    border: 1px solid rgba(255,255,255,0.2);
}
.navbar:not(.scrolled) .nav-link-highlight:hover {
    background: rgba(255,255,255,0.22) !important;
    border-color: rgba(255,255,255,0.4);
}
.navbar.scrolled .nav-link-highlight {
    background: rgba(10,77,162,0.08) !important;
    border-radius: 6px;
    color: var(--primary) !important;
    margin: 6px 4px !important;
    padding: 8px 14px !important;
    border: 1px solid rgba(10,77,162,0.2);
}
.navbar.scrolled .nav-link-highlight:hover {
    background: rgba(10,77,162,0.15) !important;
    border-color: var(--primary);
}
/* İçerik Gönder'de underline animasyonu gösterme */
.nav-link-highlight::after { display: none !important; }

/* ===== HERO (Video Background - dubai.ae style) ===== */
.hero {
    position: relative;
    height: 125vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* YouTube Video Background */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 222vh;
    height: 125vh;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 0;
}

/* Hero bottom fade - smooth transition */
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background:
        linear-gradient(to top,
            rgba(245,245,245,1) 0%,
            rgba(245,245,245,0.98) 5%,
            rgba(245,245,245,0.92) 10%,
            rgba(245,245,245,0.82) 16%,
            rgba(245,245,245,0.68) 23%,
            rgba(245,245,245,0.52) 30%,
            rgba(245,245,245,0.38) 38%,
            rgba(245,245,245,0.24) 46%,
            rgba(245,245,245,0.14) 55%,
            rgba(245,245,245,0.06) 65%,
            rgba(245,245,245,0.02) 78%,
            transparent 100%
        );
    z-index: 2;
    pointer-events: none;
}

/* Quick access cards - bottom of hero */
.hero-quick-cards {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 5;
}

.quick-cards-grid {
    display: flex;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}

.quick-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-card:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.quick-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.quick-card:hover .quick-card-icon {
    background: rgba(255, 255, 255, 0.35);
}

.quick-card-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.quick-card-body {
    flex: 1;
    min-width: 0;
}

.quick-card-body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.quick-card-body span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.quick-card-arrow {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-card:hover .quick-card-arrow {
    color: #ffffff;
    transform: translateX(4px);
}

/* Explore link - centered at bottom of hero */
.hero-explore {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease 0.6s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    margin-bottom: 320px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-explore:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-explore i {
    font-size: 0.9rem;
    animation: bounceDown 2s ease-in-out infinite;
}

.hero-explore:hover i {
    animation-play-state: paused;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.6; }
}

/* Sticky bottom bar (dubai.ae style) */
.hero-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 20, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.sticky-left,
.sticky-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-sticky-bar a {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.hero-sticky-bar a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.hero-sticky-bar a i {
    font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(10, 77, 162, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 77, 162, 0.5);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== TICKER BAR ===== */
.ticker-bar {
    background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
    padding: 20px 0;
    overflow: hidden;
}

.ticker-bar .container {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 720px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 auto;
}

.ticker-label {
    background: var(--dark);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    color: var(--gray-700);
    font-size: 0.825rem;
    font-weight: 500;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Ticker item yapısı */
.ticker-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    vertical-align: middle;
}
.ticker-date-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.15s;
}
.ticker-date-badge:hover { opacity: 0.75; }
.ticker-day {
    font-size: 0.92rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.ticker-month {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gray-600);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ticker-text-link {
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}
.ticker-text-link:hover { color: var(--primary); }
.ticker-sep {
    display: inline-block;
    width: 3rem;
    vertical-align: middle;
}

/* "Tümü" butonu */
.ticker-all-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.ticker-all-btn:hover { background: var(--primary-dark); }

/* ===== SECTIONS COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: rgba(10, 77, 162, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title.light {
    color: var(--white);
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== DISCOVER (sydney.com style) ===== */
.discover {
    padding: 80px 0 100px;
    background: var(--white);
}

.discover-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.discover-title strong {
    font-weight: 800;
}

/* Category tabs (sydney.com style - wide spaced, thin icons) */
.discover-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    flex: 1;
}
.entries-filter-bar .discover-tabs {
    box-shadow: none;
    border-bottom: none;
    flex-wrap: wrap;
}

.discover-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.discover-tab i {
    font-size: 1.6rem;
    font-weight: 900;
}

.discover-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--dark);
    transition: width 0.3s ease;
}

.discover-tab:hover {
    color: var(--gray-800);
}

.discover-tab.active {
    color: var(--dark);
    font-weight: 600;
}

.discover-tab.active::after {
    width: 40px;
}

/* Cards */
.discover-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 1.5rem;
}

.discover-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: auto;
    height: 0;
    padding-bottom: 140%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.discover-card > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 4;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discover-card:hover > img {
    transform: scale(1.06);
}

.discover-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    color: var(--white);
    z-index: 5;
}

.discover-card-overlay h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 4rem;
    gap: 12px;
}

.about-img-placeholder span {
    font-size: 1rem;
}

.about-badge-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 280px;
}

.about-badge-card i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.about-badge-card p {
    font-style: italic;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-content .section-tag {
    margin-bottom: 8px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.about-feature i {
    color: var(--green);
    font-size: 1.1rem;
}

/* ===== SHOWCASE (dubai.ae full-bleed image) ===== */
.showcase {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.2) translateY(20px);
    opacity: 0;
    filter: brightness(0.9);
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 2s ease;
}

.showcase.visible .showcase-image {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: brightness(1);
}

/* Top fade - white to transparent */
.showcase-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.85) 15%,
        rgba(255,255,255,0.55) 35%,
        rgba(255,255,255,0.25) 55%,
        rgba(255,255,255,0.08) 75%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Bottom fade - transparent to white */
.showcase-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.9) 12%,
        rgba(255,255,255,0.6) 30%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.1) 70%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Left & right edge fades */
.showcase-fade-left {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    background: linear-gradient(to right,
        rgba(255,255,255,0.7) 0%,
        rgba(255,255,255,0.3) 40%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
}

.showcase-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 15%;
    background: linear-gradient(to left,
        rgba(255,255,255,0.7) 0%,
        rgba(255,255,255,0.3) 40%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 60px;
    color: var(--dark);
    z-index: 4;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s,
                transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.showcase.visible .showcase-overlay {
    opacity: 1;
    transform: translateY(0);
}

.showcase-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.showcase-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .showcase-image-wrapper {
        height: 55vh;
    }
    .showcase-title {
        font-size: 2rem;
    }
    .showcase-overlay {
        padding: 40px 24px;
    }
    .showcase-fade-left,
    .showcase-fade-right {
        width: 8%;
    }
}

/* ===== INNOVATION ===== */
.innovation {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.innovation-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--primary-dark) 100%);
}

.innovation-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--white);
}

.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 60%; }

.innovation-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.innovation-desc {
    max-width: 600px;
    margin: 0 auto 48px;
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
}

.innovation-counters {
    display: flex;
    justify-content: center;
    gap: 80px;
}

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

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== NEWS ===== */
.news {
    padding: 100px 0;
    background: var(--gray-100);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 77, 162, 0.08);
}

.news-card.featured {
    grid-row: span 2;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 2rem;
}

.news-img-placeholder.large {
    height: 320px;
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-body {
    padding: 24px;
}

.news-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.news-meta i {
    margin-right: 4px;
}

.news-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-link:hover {
    gap: 10px;
}

/* ===== ATTRACTIONS (dubai.ae style) ===== */
.attractions {
    padding: 80px 0 0;
    overflow: hidden;
}

.attractions-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.attractions-title strong {
    font-weight: 800;
}

.attractions-container {
    width: 100%;
}

/* Each row slides in from bottom on scroll */
.attraction-row {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.attraction-row.show {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger: second row delayed */
.attraction-row.row-bottom {
    transition-delay: 0.2s;
}

/* Row 1: 2 items, each 50% */
.row-top .attraction-item {
    flex: 1;
    height: 380px;
}

/* Row 2: 3 items, each 33% */
.row-bottom .attraction-item {
    flex: 1;
    height: 320px;
}

.attraction-item {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.attraction-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 3rem;
    gap: 10px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.attraction-placeholder span {
    font-size: 1rem;
    font-weight: 500;
}

/* Hover: image zoom */
.attraction-item:hover .attraction-placeholder {
    transform: scale(1.08);
}

/* Hover overlay */
.attraction-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.05) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.attraction-item:hover .attraction-hover {
    opacity: 1;
}

.attraction-hover h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    transform: translateY(12px);
    transition: transform 0.4s ease;
}

.attraction-item:hover .attraction-hover h3 {
    transform: translateY(0);
}

.attraction-hover p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 12px;
    transform: translateY(12px);
    transition: transform 0.4s ease 0.05s;
}

.attraction-item:hover .attraction-hover p {
    transform: translateY(0);
}

.attraction-cta {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transform: translateY(12px);
    transition: transform 0.4s ease 0.1s;
}

.attraction-item:hover .attraction-cta {
    transform: translateY(0);
}

.attraction-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.attraction-item:hover .attraction-cta i {
    transform: translateX(4px);
}

/* ===== ANNOUNCEMENTS ===== */
.announcements {
    padding: 100px 0;
    background: var(--gray-100);
}

.announcements-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.announcement-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.announcement-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 77, 162, 0.08);
}

.announcement-date {
    text-align: center;
    min-width: 64px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.announcement-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.announcement-date .month {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 1px;
}

.announcement-content {
    flex: 1;
}

.announcement-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    background: rgba(10, 77, 162, 0.08);
    color: var(--primary);
}

.announcement-tag.urgent {
    background: rgba(220, 53, 69, 0.1);
    color: var(--red);
}

.announcement-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.announcement-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.announcement-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
    flex-shrink: 0;
}

.announcement-item:hover .announcement-link {
    background: var(--primary);
    color: var(--white);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag { margin-bottom: 8px; }
.contact-info .section-title { text-align: left; margin-bottom: 12px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 32px; }

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(10, 77, 162, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 77, 162, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: var(--dark);
    color: var(--gray-400);
    overflow: hidden;
}

/* Arka plan görseli (yönetim panelinden) */
.footer-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: none;
    opacity: 0.12;
    filter: saturate(0.4);
    pointer-events: none;
}
.footer.has-bg-img .footer-bg-img { display: block; }
.footer-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.97) 100%);
    pointer-events: none;
    z-index: 0;
}
.footer .container { position: relative; z-index: 1; }

.footer-top {
    padding: 64px 0 48px;
}

/* Marka sol + sütunlar sağ */
.footer-brand-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: flex-start;
}

.footer-logo { margin-bottom: 16px; }

.footer-brand-logo { color: var(--white); }
.footer-brand-logo .logo-com { color: rgba(255,255,255,0.5); }

.footer-about {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Logolar */
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.footer-logos img {
    height: 36px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}
.footer-logos a:hover img { opacity: 1; }

/* Dinamik sütunlar container */
.footer-dyn-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Her sütun (footer.js tarafından oluşturulan .footer-col) */
.footer-col { min-width: 140px; }

.footer-col-title,
.footer-col h4 {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul a {
    font-size: 0.855rem;
    color: var(--gray-500);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Sosyal medya (footer.js tarafından oluşturulan) */
.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.footer-social-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: var(--transition);
}
.footer-social-icon svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    position: relative; z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer-bottom-text {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-align: center;
}
#footer-bottom-text strong { color: var(--gray-400); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 64px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Footer needs padding for sticky bar */
.footer {
    padding-bottom: 48px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .nav-links a {
        padding: 14px 12px;
        font-size: 0.82rem;
    }

    .nav-search input {
        width: 80px;
    }
}

@media (max-width: 1024px) {
    .discover-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .row-top .attraction-item {
        height: 300px;
    }

    .row-bottom .attraction-item {
        height: 260px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

}

@media (max-width: 768px) {
    .quick-cards-grid {
        flex-direction: column;
        max-width: 360px;
    }

    .hero-quick-cards {
        bottom: 60px;
    }

    .nav-bottom-row {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-search,
    .nav-icon-btn,
    .lang-btn {
        display: none;
    }

    .logo-text-brand {
        font-size: 1.3rem;
    }

    .nav-top-row {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-city {
        font-size: 4rem;
        letter-spacing: -1px;
    }



    .hero-sticky-bar {
        padding: 0 12px;
    }

    .hero-sticky-bar a {
        padding: 12px 10px;
        font-size: 0.75rem;
    }

    .discover-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .discover-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .discover-tab {
        padding: 12px 20px;
        flex-shrink: 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-badge-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-row: span 1;
    }

    .attraction-row {
        flex-direction: column;
    }

    .row-top .attraction-item,
    .row-bottom .attraction-item {
        height: 220px;
    }

    .attractions-title {
        font-size: 2rem;
        padding: 0 24px;
    }

    .innovation-counters {
        flex-direction: column;
        gap: 32px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .discover-cards {
        grid-template-columns: 1fr;
    }

    .discover-card {
        padding-bottom: 100%;
    }

    .hero-city {
        font-size: 3rem;
    }

    .hero-welcome {
        font-size: 1rem;
    }


    .counter-number {
        font-size: 2.5rem;
    }

    .sticky-left a:not(:last-child),
    .sticky-right a:first-child {
        display: none;
    }
}

/* ===== ENTRIES FEED (Discover section) ===== */

/* Stats bar */
.entries-stats {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.entry-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.entry-stat-n {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline-block;
    transition: transform .12s ease;
}
/* Pulse on each digit change */
@keyframes stat-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18); }
    100% { transform: scale(1); }
}
.entry-stat-n.counting { animation: stat-pop .22s ease; }
.entry-stat-l { font-size: 0.72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }

/* Filter bar */
.entries-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.entries-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 8px 14px;
    transition: var(--transition);
    flex-shrink: 0;
}
.entries-search-wrap:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(10,77,162,.1);
}
.entries-search-wrap i { color: var(--gray-500); font-size: 0.85rem; }
.entries-search-wrap input {
    border: none; background: none; outline: none;
    font-family: inherit; font-size: 0.875rem;
    color: var(--gray-800); width: 180px;
}
.entries-search-wrap input::placeholder { color: var(--gray-500); }

/* Görselsiz discover kart */
.discover-card--no-img {
    background: linear-gradient(135deg, var(--entry-color, #0a4da2) 0%, color-mix(in srgb, var(--entry-color, #0a4da2) 70%, black) 100%);
    min-height: 200px;
}
.discover-card-no-img-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
}
.discover-card--no-img h3 { color: #fff; font-size: 1rem; }
.discover-card--no-img p  { color: rgba(255,255,255,0.7); font-size: 0.82rem; line-height: 1.5; }

/* Kategori badge (kart üstü) */
.entry-card-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}

/* Skeleton */
.entry-skeleton {
    border-radius: var(--radius);
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s infinite;
    padding-bottom: 75%;
}
@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Yükleniyor */
.entries-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Boş durum */
.entries-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    color: var(--gray-500);
    font-size: 0.95rem;
    gap: 0.5rem;
}

/* ===== MESAJ MODAL (openMessageModal - site.js) ===== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(4,10,26,.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9998; padding: 1.25rem;
    animation: am-fade-in .2s ease;
}
.modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 24px 64px rgba(4,10,26,.35);
    position: relative;
    animation: am-slide-up .22s cubic-bezier(.22,.61,.36,1);
}
.btn-close {
    position: absolute; top: .85rem; right: .85rem;
    background: none; border: none; cursor: pointer;
    font-size: 1.4rem; line-height: 1; color: #64748b;
    padding: .15rem .4rem; border-radius: 6px;
    transition: background .15s, color .15s;
}
.btn-close:hover { background: #f1f5f9; color: #0f172a; }

.alert {
    display: flex; align-items: flex-start; gap: .5rem;
    border-radius: 8px; padding: .65rem .9rem;
    font-size: .82rem; font-weight: 500; margin-bottom: .9rem;
}
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }

.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block; font-size: .8rem; font-weight: 600;
    color: #374151; margin-bottom: .35rem; letter-spacing: .02em;
}
.form-group input,
.form-group textarea {
    width: 100%; padding: .65rem .9rem;
    border: 1.5px solid #e2e8f0; border-radius: 10px;
    font-family: inherit; font-size: .88rem;
    color: #0f172a; background: #fff; outline: none;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.form-group textarea { resize: vertical; }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .4rem; padding: .75rem 1.5rem;
    background: var(--primary, #0a4da2); color: #fff;
    border: none; border-radius: 10px;
    font-family: inherit; font-size: .9rem; font-weight: 600;
    cursor: pointer; transition: background .15s, box-shadow .15s, transform .1s;
}
.btn-primary:hover { background: var(--primary-dark, #083a7a); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(10,77,162,.3); }
.btn-primary:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ===== AUTH MODAL (site.js ile uyumlu) ===== */
@keyframes am-fade-in  { from { opacity: 0 } to { opacity: 1 } }
@keyframes am-slide-up { from { opacity: 0; transform: translateY(24px) } to { opacity: 1; transform: none } }
@keyframes am-spin     { to { transform: rotate(360deg) } }

.am-overlay {
    position: fixed; inset: 0;
    background: rgba(4,10,26,.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; padding: 1.25rem;
    animation: am-fade-in .2s ease;
}
.am-card {
    background: #fff;
    border-radius: 18px;
    width: 100%; max-width: 440px;
    box-shadow: 0 32px 80px rgba(4,10,26,.4), 0 4px 16px rgba(4,10,26,.15);
    position: relative;
    animation: am-slide-up .25s cubic-bezier(.22,.61,.36,1);
    overflow: hidden;
}
.am-card::before {
    content: ''; display: block; height: 4px;
    background: linear-gradient(90deg, #0f172a, #1d4ed8, #60a5fa);
}
.am-close {
    position: absolute; top: .85rem; right: .85rem;
    background: rgba(0,0,0,.05); border: none;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #64748b; z-index: 10;
    transition: background .15s, color .15s;
}
.am-close:hover { background: #fee2e2; color: #dc2626; }
.am-close svg  { width: 15px; height: 15px; }
.am-header { text-align: center; padding: 1.75rem 2rem 1rem; }
.am-logo-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto .95rem;
    box-shadow: 0 4px 16px rgba(29,78,216,.35);
}
.am-logo-icon svg { width: 24px; height: 24px; color: #fff; }
.am-title { font-size: 1.4rem; font-weight: 700; color: #0f172a; letter-spacing: -.025em; margin-bottom: .3rem; }
.am-subtitle { font-size: .82rem; color: #64748b; line-height: 1.5; }
.am-tabs { display: flex; border-bottom: 2px solid #e2e8f0; margin: 0 2rem .05rem; }
.am-tab {
    flex: 1; padding: .62rem;
    font-size: .88rem; font-weight: 600; font-family: inherit;
    background: none; border: none; cursor: pointer;
    color: #94a3b8; border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: color .15s;
}
.am-tab.active { color: #1d4ed8; border-bottom-color: #1d4ed8; }
.am-body { padding: 1.4rem 2rem 1.75rem; }
.am-alert {
    display: flex; align-items: flex-start; gap: .5rem;
    background: #fef2f2; border: 1px solid #fecaca;
    border-radius: 10px; padding: .65rem .9rem;
    font-size: .82rem; color: #b91c1c; font-weight: 500;
    margin-bottom: 1.1rem;
}
.am-alert svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }
.am-alert.hidden { display: none; }
.am-field { margin-bottom: .9rem; }
.am-field label { display: block; font-size: .74rem; font-weight: 600; color: #374151; letter-spacing: .02em; margin-bottom: .38rem; }
.am-input-wrap { position: relative; }
.am-input-wrap .am-icon { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); color: #94a3b8; pointer-events: none; display: flex; }
.am-input-wrap .am-icon svg { width: 15px; height: 15px; }
.am-input-wrap input {
    width: 100%; padding: .7rem 1rem .7rem 2.35rem;
    border: 1.5px solid #e2e8f0; border-radius: 10px;
    font-family: inherit; font-size: .88rem;
    color: #0f172a; background: #fff; outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.am-input-wrap input::placeholder { color: #cbd5e1; }
.am-input-wrap input:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.am-pw-toggle { position: absolute; right: .85rem; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #94a3b8; display: flex; padding: 0; transition: color .15s; }
.am-pw-toggle:hover { color: #475569; }
.am-pw-toggle svg { width: 15px; height: 15px; }
.am-submit {
    width: 100%; padding: .8rem;
    background: #1d4ed8; color: #fff;
    border: none; border-radius: 10px;
    font-family: inherit; font-size: .9rem; font-weight: 600;
    cursor: pointer; letter-spacing: .01em; margin-top: .4rem;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    transition: background .15s, box-shadow .15s, transform .1s;
}
.am-submit:hover:not(:disabled) { background: #1e40af; box-shadow: 0 4px 20px rgba(29,78,216,.35); transform: translateY(-1px); }
.am-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.am-spinner { width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: am-spin .7s linear infinite; }
.am-spinner.hidden { display: none; }
.am-footer-text { text-align: center; font-size: .8rem; color: #94a3b8; margin-top: .85rem; }
.am-footer-text a { color: #1d4ed8; font-weight: 600; text-decoration: none; }
.am-footer-text a:hover { text-decoration: underline; }
.hidden { display: none !important; }
