.top-reklam {
    background: linear-gradient(135deg, #ffd369 0%, #ffb347 100%);
    color: #021421;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1051;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-reklam:hover {
    background: linear-gradient(135deg, #ffc952 0%, #ffa42e 100%);
}

.top-reklam-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-reklam-content i {
    font-size: 20px;
    animation: pulse 1.5s infinite;
}

.top-reklam-content strong {
    color: #021421;
}

.top-reklam-content span {
    background: rgba(2, 20, 33, 0.15);
    padding: 4px 12px;
    /* border-radius: 40px; */
    font-size: 13px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 576px) {
    .top-reklam-content {
        font-size: 12px;
        gap: 8px;
    }

    .top-reklam-content i {
        font-size: 16px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00c6ff;
    --dark: #021421;
    --gold: #ffd369;
    --gold-dark: #e6b800;
    --instagram: #d73579;
    --facebook: #1877f2;
    --youtube: #ff0000;
    --whatsapp: #299f41;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #eef8ff 0%, #f8fbff 100%);
    overflow-x: hidden;
    color: #17324a;
    padding-bottom: 0;
}

body::before {
    display: none;
}

a {
    text-decoration: none;
}

/* TOPBAR - İKONLAR SOL, BİLGİLER SAĞ */
.topbar {
    background: #021421;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* SOSYAL MEDYA ICONLARI - SOL TARAF */
.social-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon-wrapper {
    position: relative;
    display: inline-block;
}

.social-icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    /* border-radius: 40px; */
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow: hidden;
    color: white;
    width: 38px;
    white-space: nowrap;
}

.social-icon-link i {
    font-size: 18px;
    min-width: 18px;
    transition: transform 0.2s;
}

.social-icon-link span {
    opacity: 0;
    visibility: hidden;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateX(-8px);
}

.social-icon-link:hover {
    width: auto;
    padding: 6px 16px 6px 12px;
}

.social-icon-link:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Her sosyal medya kendi hover rengi */
.social-icon-wrapper:nth-child(1) .social-icon-link:hover {
    background: var(--instagram);
    color: white;
}

.social-icon-wrapper:nth-child(2) .social-icon-link:hover {
    background: var(--facebook);
    color: white;
}

.social-icon-wrapper:nth-child(3) .social-icon-link:hover {
    background: var(--youtube);
    color: white;
}

.social-icon-wrapper:nth-child(4) .social-icon-link:hover {
    background: var(--whatsapp);
    color: white;
}

/* SAĞ TARAF - İLETİŞİM BİLGİLERİ */
.topbar-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    transition: color 0.2s;
}

.topbar-info-item i {
    color: var(--gold);
    font-size: 14px;
}

.topbar-info-item:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .social-topbar {
        justify-content: center;
    }

    .topbar-info {
        justify-content: center;
    }
}

/* LOGO BAR (Sticky) */
.logo-bar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px 0;
}

.logo-text {
    font-size: 40px;
    font-weight: 700;
    color: #12344d;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--primary);
}

/* DESKTOP NAVIGATION WITH DROPDOWN */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: #224862;
    margin-left: 14px;
    font-weight: 500;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-nav .nav-link:hover {
    color: #008ac2;
}

/* Desktop Dropdown Menü */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 14px;
    background: white;
    min-width: 220px;
    /* border-radius: 16px; */
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1080;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-item.dropdown-item-group:hover .dropdown-menu-custom,
.dropdown-menu-custom:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #224862;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.dropdown-menu-custom a i {
    font-size: 18px;
    width: 24px;
    color: var(--primary);
}

.dropdown-menu-custom a:hover {
    background: #eef8ff;
    color: #008ac2;
    padding-left: 26px;
}

.nav-link i.bi-chevron-down {
    font-size: 12px;
    transition: transform 0.2s;
}

.nav-item.dropdown-item-group:hover .nav-link i.bi-chevron-down {
    transform: rotate(180deg);
}

/* Mobil Menü Overlay ve Düzeltmeler */
@media(max-width:991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 90px 0 30px 0;
        transition: .4s ease;
        z-index: 1060 !important;
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.12);
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        flex-direction: column;
        padding: 0 20px;
        align-items: flex-start !important;
        /* SOLA HİZALA */
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: 14px 0;
        font-size: 16px;
        justify-content: flex-start;
        /* SOLA HİZALA */
        gap: 12px;
    }

    /* Mobil alt menü (accordion tarzı) - ANA ALT MENÜ */
    .mobile-submenu {
        display: none;
        padding-left: 32px;
        background: #f8fafc;
        margin-bottom: 8px;
    }

    .mobile-submenu.show {
        display: block;
    }

    .mobile-submenu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        color: #224862;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .mobile-submenu a:last-child {
        border-bottom: none;
    }

    .mobile-submenu a i {
        width: 24px;
        color: var(--primary);
    }

    /* İKİNCİ SEVİYE ALT MENÜ (iç içe) */
    .mobile-submenu-level2 {
        display: none;
        padding-left: 28px;
        background: #f0f4f8;
        margin: 5px 0 5px 0;
        border-radius: 0;
    }

    .mobile-submenu-level2.show {
        display: block;
    }

    .mobile-submenu-level2 a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        color: #517e9b;
        font-size: 13px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .mobile-submenu-level2 a:last-child {
        border-bottom: none;
    }

    .mobile-submenu-level2 a i {
        width: 22px;
        font-size: 12px;
        color: #ffd369;
    }

    /* Alt menü açma butonu için stil */
    .has-submenu-level2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }

    .submenu-arrow {
        transition: transform 0.2s;
        font-size: 12px;
        color: #7a8f9f;
    }

    .submenu-arrow.rotated {
        transform: rotate(90deg);
    }

    .nav-link .bi-chevron-down {
        transition: transform 0.2s;
        margin-left: auto;
    }

    .nav-link.rotated .bi-chevron-down {
        transform: rotate(180deg);
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 1055;
        height: 100vh;
        width: 100vw;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body {
        padding-bottom: 72px;
    }
}



/* İÇERİK BÖLÜMLERİ */
.feature-card {
    background: rgba(255, 255, 255, 0.9);
    /* border-radius: 28px; */
    padding: 35px 28px;
    transition: .5s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    text-align: center;
    backdrop-filter: blur(2px);
}

.feature-card:hover {
    transform: translateY(-6px);
    background: white;
}

.feature-card i {
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 20px;
}

.content-section {
    padding: 100px 0;
}

.section-title {
    font-size: 54px;
    font-weight: 800;
    color: #12344d;
}

.menu-card {
    background: white;
    /* border-radius: 30px; */
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.menu-card-body {
    padding: 28px;
}

.price {
    color: var(--gold);
    font-size: 28px;
    font-weight: 700;
}

.altbar {
    background: linear-gradient(135deg, #031d30, #082f49);
    padding: 50px 0;
    color: white;
}

.reservation-btn {
    background: var(--gold);
    color: #111;
    padding: 16px 34px;
    /* border-radius: 60px; */
    font-weight: 700;
    transition: 0.2s;
    display: inline-block;
}

.reservation-btn:hover {
    background: var(--gold-dark);
    color: #000;
    transform: scale(1.02);
}

footer {
    background: #02121c;
    padding: 70px 0 30px;
    color: #b0d4f0;
}

footer a {
    color: #b0d4f0;
    transition: 0.2s;
}

footer a:hover {
    color: var(--gold);
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #1e4b61;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
    margin-right: 10px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--gold);
    color: #02121c;
}

/* MOBİL ALTA YAPIŞIK 4 BUTONLU SABİT MENÜ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1070;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 10px 16px 14px;
}

.mobile-bottom-nav .nav-item-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #517e9b;
    font-size: 12px;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 20%;
    text-align: center;
    padding: 6px 0 2px;
    /* border-radius: 40px; */
}

.mobile-bottom-nav .nav-item-bottom i {
    font-size: 26px;
    transition: 0.2s;
}

.mobile-bottom-nav .nav-item-bottom.active,
.mobile-bottom-nav .nav-item-bottom:active {
    color: var(--primary);
}

.mobile-bottom-nav .nav-item-bottom.active i {
    transform: translateY(-2px);
    color: #00b4e6;
    text-shadow: 0 0 4px rgba(0, 198, 255, 0.3);
}

@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: flex;
    }

    footer {
        margin-bottom: 0;
        padding-bottom: 40px;
    }
}



/* POPUP (Modal) - Site açılınca gözükecek */

.custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.custom-popup.show {
    visibility: visible;
    opacity: 1;
}

.popup-container {
    background: linear-gradient(145deg, #ffffff 0%, #fef9e8 100%);
    max-width: 500px;
    width: 90%;
    /* border-radius: 32px; */
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-popup.show .popup-container {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    padding: 25px 25px 15px 25px;
    text-align: center;
    color: white;
}

.popup-header i {
    font-size: 55px;
    margin-bottom: 10px;
    display: inline-block;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.popup-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.popup-body {
    padding: 30px 25px;
    text-align: center;
}

.popup-body p {
    color: #224862;
    font-size: 16px;
    margin-bottom: 20px;
}

.popup-discount {
    background: #ffd369;
    padding: 15px;
    /* border-radius: 20px; */
    margin: 20px 0;
}

.popup-discount .big {
    font-size: 42px;
    font-weight: 800;
    color: #021421;
}

.popup-discount small {
    font-size: 16px;
    font-weight: 500;
}

.popup-body input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e6ed;
    /* border-radius: 50px; */
    margin-bottom: 15px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.2s;
}

.popup-body input:focus {
    outline: none;
    border-color: var(--primary);
}

.popup-btn {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    padding: 14px 28px;
    /* border-radius: 50px; */
    font-weight: 700;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

.popup-footer {
    padding: 15px 25px 25px;
    text-align: center;
    font-size: 12px;
    color: #7e95ad;
    border-top: 1px solid #eef2f5;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    width: 32px;
    height: 32px;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 10;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.popup-footer a {
    color: var(--primary);
    text-decoration: none;
}



/* ÇEREZ POLİTİKASI (COOKIE CONSENT) - Popup ile birlikte çalışır */

.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #021421;
    color: white;
    padding: 18px 24px;
    /* border-radius: 20px; */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    backdrop-filter: blur(10px);
    background: rgba(2, 20, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 18px;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: var(--gold);
    color: #021421;
    border: none;
    padding: 10px 24px;
    /* border-radius: 40px; */
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.cookie-btn-accept:hover {
    background: #ffc107;
    transform: scale(1.02);
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    /* border-radius: 40px; */
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ÇEREZ AYARLARI MODAL PANELİ */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-settings-modal.show {
    visibility: visible;
    opacity: 1;
}

.cookie-settings-panel {
    background: white;
    max-width: 500px;
    width: 90%;
    /* border-radius: 28px; */
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cookie-settings-modal.show .cookie-settings-panel {
    transform: scale(1);
}

.cookie-settings-header {
    background: linear-gradient(135deg, #021421, #0a334a);
    padding: 25px;
    color: white;
    text-align: center;
}

.cookie-settings-header i {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--gold);
}

.cookie-settings-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.cookie-settings-body {
    padding: 20px 25px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-option {
    padding: 15px 0;
    border-bottom: 1px solid #eef2f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #021421;
    margin-bottom: 5px;
}

.cookie-option-info p {
    font-size: 13px;
    color: #7e95ad;
    margin: 0;
}

.cookie-option-toggle {
    position: relative;
    width: 52px;
    height: 28px;
}

.cookie-option-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    /* border-radius: 34px; */
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    /* border-radius: 50%; */
}

input:checked+.toggle-slider {
    background-color: #00c6ff;
}

input:checked+.toggle-slider:before {
    transform: translateX(24px);
}

input:disabled+.toggle-slider {
    background-color: #00c6ff;
    opacity: 0.6;
}

.cookie-settings-footer {
    padding: 20px 25px;
    background: #f8fafc;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-save-btn {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    padding: 12px 28px;
    /* border-radius: 40px; */
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.cookie-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.3);
}

.cookie-cancel-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 12px 28px;
    /* border-radius: 40px; */
    cursor: pointer;
    transition: 0.2s;
}

.cookie-cancel-btn:hover {
    background: #f0f0f0;
}

.cookie-required-badge {
    background: #ffd369;
    color: #021421;
    font-size: 10px;
    padding: 2px 8px;
    /* border-radius: 20px; */
    font-weight: 600;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 80px;
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .cookie-buttons {
        justify-content: center;
    }
}