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

:root {
    --primary-blue: #0077b6;   
    --light-blue: #90e0ef;     
    --dark-blue: #03045e;      
    --primary-green: #2a9d8f;  
    --accent: #fca311;
    --white: #ffffff;
    --text-dark: #2b2d42;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #e0f2fe 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; 
}

body {
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

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

.section {
    padding: 100px 0;
}

.bg-gradient {
    background: var(--bg-gradient);
}

.glass-bg {
    background: linear-gradient(135deg, #e0f2fe 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 4px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 25px auto 0;
}

/* ================= Modern Glass Navbar ================= */
body {
    padding-top: 35px; /* Prevent content hiding behind ticker */
}

/* ================= Son Dakika Haber Bandı ================= */
.news-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(90deg, var(--dark-blue), var(--primary-blue));
    color: white;
    display: flex;
    align-items: center;
    z-index: 10000;
    font-size: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ticker-label {
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 700;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.ticker-label i {
    margin-right: 5px;
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.ticker-text {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    height: 100%;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-text span {
    margin-right: 50px;
    position: relative;
}

.ticker-text span::after {
    content: '•';
    position: absolute;
    right: -25px;
    color: var(--light-blue);
}

.ticker-text span:last-child::after {
    display: none;
}

.ticker-text:hover {
    animation-play-state: paused;
}

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

nav {
    position: fixed;
    top: 55px; /* 35px (ticker) + 20px (original top padding) */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--accent);
    font-size: 28px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-blue);
}

/* ================= Hero Section & Glass Box ================= */
.hero {
    height: 100vh;
    background: url('images/hero-bg.jpg') center/cover fixed no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #03045e; /* Görsel yüklenmezse diye yedek renk */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.4) 0%, rgba(0, 119, 182, 0.2) 100%);
}

.glass-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform-style: preserve-3d;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-blue), #00b4d8);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 119, 182, 0.4);
}

/* ================= Modern Cards & Shadows ================= */
.modern-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    overflow: hidden;
}

a.modern-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Hakkında */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-box {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--light-blue) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: 20px;
}

.info-box:hover::before {
    opacity: 0.3;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
    transition: var(--transition);
    box-shadow: inset 0 0 0 2px rgba(0, 119, 182, 0.1);
}

.info-box:hover .icon-wrapper {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotateY(180deg);
}

.info-box h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

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

.city-card {
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.card-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    background-color: #e0e0e0; /* Resim yokken gri gözüksün */
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 20px;
    color: var(--white);
    transform: translateY(calc(100% - 70px));
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.glass-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.glass-overlay p {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-bottom: 15px;
}

.explore-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.city-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.city-card:hover .glass-overlay {
    transform: translateY(0);
    background: rgba(0, 51, 102, 0.6);
}

.city-card:hover .glass-overlay p,
.city-card:hover .explore-text {
    opacity: 1;
}

/* Turistik & Yemekler (Cards) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #e0e0e0; /* Resim yokken gri gözüksün */
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-card:hover .card-img-container img {
    transform: scale(1.08);
}

.tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(252, 163, 17, 0.3);
    z-index: 2;
}

.card-content {
    padding: 30px 25px;
    position: relative;
}

.card-content h3 {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 22px;
}

/* Galeri */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    background-color: #e0e0e0; /* Resim yokken gri gözüksün */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 119, 182, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 40px;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-tall {
    grid-row: span 2;
}

/* İletişim */
.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
}

.half {
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    background-color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 5px rgba(0, 119, 182, 0.1);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 18px;
}

/* ================= Modern Footer ================= */
.modern-footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green), var(--accent));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--accent);
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info li i {
    color: var(--accent);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* ================= Reveal Animasyonları (Scroll) ================= */
.reveal {
    opacity: 0;
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    visibility: visible;
}

.fade-bottom {
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.fade-left {
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.fade-right {
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active.fade-bottom,
.reveal.active.fade-left,
.reveal.active.fade-right {
    transform: translate(0, 0);
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        width: 100%;
        top: 0;
        border-radius: 0;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 0;
        gap: 20px;
        text-align: center;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.5s ease;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= Scroll to Top Button ================= */
.scroll-top {
    position: fixed;
    bottom: -60px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    bottom: 20px;
}

.scroll-top:hover {
    background: var(--dark-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ================= Multi-Page Styles ================= */
body.inner-page {
    padding-top: 120px;
}

/* ================= Dropdown Menu ================= */
.nav-links li.dropdown {
    position: relative;
    padding: 5px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0 !important;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark) !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu li a::before {
    display: none !important; /* Hide original hover line */
}

.dropdown-menu li a:hover {
    color: var(--primary-blue) !important;
    background: rgba(0, 119, 182, 0.05);
    padding-left: 25px;
}

/* ================= Popup Reklam ================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    width: 350px;
    height: 250px;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(3,4,94,0.9) 0%, rgba(0,119,182,0.8) 100%);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.close-popup:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.popup-body {
    position: relative;
    z-index: 5;
    padding: 25px;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-body h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--accent);
}

.popup-body p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #e0f2fe;
}

/* ================= City Detail Grid ================= */
.city-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.city-detail-grid img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.city-details h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 22px;
}

.city-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .city-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= Hero Mini Widgets ================= */
.hero-mini-widgets {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.mini-widget {
    background: rgba(3, 4, 94, 0.7);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 2px solid var(--accent);
}

.mini-widget i {
    color: var(--accent);
    font-size: 22px;
}

/* ================= Footer Ziyaretçi ================= */
.visitor-counter {
    background: var(--accent);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    border: 2px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.visitor-counter i {
    margin-right: 8px;
    font-size: 24px;
}

@media (max-width: 768px) {
    .hero-mini-widgets {
        gap: 10px;
    }
    .mini-widget {
        font-size: 14px;
        padding: 8px 16px;
    }
    .mini-widget i {
        font-size: 18px;
    }
}

/* ================= Lightbox ================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 11000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    animation-name: zoom;
    animation-duration: 0.6s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 45px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 11001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent);
    text-decoration: none;
    cursor: pointer;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    height: 150px;
    font-size: 18px;
}

/* ================= Ana Sayfa Slider ================= */
.slider-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.home-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #000;
}

.home-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.home-slide {
    min-width: 100%;
    height: 500px;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--dark-blue);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-nav-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev-btn {
    left: 20px;
}

.slider-nav-btn.next-btn {
    right: 20px;
}

@media (max-width: 768px) {
    .home-slide {
        height: 300px;
    }
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ================= Ana Sayfa Video Bölümü ================= */
.video-section {
    padding-top: 20px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 3px solid var(--glass-border);
    background: #000;
}

.promo-video {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= Global Aegean Background Glow ================= */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.04) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(32, 201, 151, 0.04) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

