* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: #fdfdfd; 
    color: #333; 
    line-height: 1.6; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
    margin: 0;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.top-info-bar {
    background-color: #0b747a;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    width: 100%;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: 0.2s;
}

.top-bar-left a:hover {
    color: #b2d8d8;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    width: 26px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.top-bar-right a:hover {
    background-color: #ffffff;
    color: #0b747a;
    transform: translateY(-2px);
}

.top-orange-bar {
    width: 100%;
    height: 5px;
    background-color: #0b747a;
}

header { 
    background: #fff; 
    position: relative; 
    width: 100%;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
    height: 90px; 
}

.logo-box {
    position: absolute;
    left: 20px;
    top: 0;
    background: #fff;
    padding: 12px 18px 25px 18px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 1010;
    text-align: center;
    width: 180px;
}

.logo-box img { 
    max-height: 100px; 
    width: auto;
    object-fit: contain; 
    display: block;
    margin: 0 auto;
}

.logo-box a { 
    font-size: 22px; 
    font-weight: bold; 
    color: #0b747a; 
    text-decoration: none; 
}

.nav-right-area {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu { 
    list-style: none; 
    display: flex; 
    gap: 25px; 
    align-items: center; 
}

.nav-menu li a { 
    text-decoration: none; 
    color: #495057; 
    font-weight: 600; 
    font-size: 14px; 
    letter-spacing: 0.5px;
    transition: 0.2s; 
    text-transform: uppercase;
}

.nav-menu li a:hover, .nav-menu li.aktif a { 
    color: #0b747a; 
}

.btn-rezervasyon {
    background-color: #0b747a;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(11, 116, 122, 0.2);
    text-transform: uppercase;
}

.btn-rezervasyon:hover {
    background-color: #095c61;
    transform: translateY(-2px);
}

.mobile-rezervasyon-li {
    display: none;
}

.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #333; }

.site-content {
    flex: 1;
    width: 100%;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
    transform: translateY(-20px);
    transition: 0.3s ease;
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
    transition: 0.2s;
}

.modal-close:hover {
    color: #333;
}

.modal-box h3 {
    font-size: 24px;
    color: #0b747a;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 13px !important;
    border: 1px solid #eaeaea;
    transition: 0.2s;
}

.contact-item:hover {
    background: #f0f7f7;
    border-color: #0b747a;
    color: #0b747a;
}

.contact-item i {
    font-size: 20px;
    width: 25px;
    text-align: center;
    color: #0b747a;
}

.contact-item.whatsapp i { color: #25D366; }
.contact-item.phone i { color: #0b747a; }
.contact-item.email i { color: #ea4335; }

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-reveal-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-base {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}

.logo-base.bw {
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.25;
}

.logo-color-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%; 
    overflow: hidden;
    transition: height 1.4s cubic-bezier(0.77, 0, 0.175, 1); 
}

.logo-color-wrapper .logo-base.color {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* --- Index Sayfası Stilleri --- */
.hero-slider { position: relative; width: 100%; height: 500px; overflow: hidden; background: #000; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease-in-out; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.slide.active { opacity: 1; z-index: 2; }
.slide img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); z-index: 1; }

.slide-content { position: relative; z-index: 3; max-width: 800px; padding: 0 20px; }
.slide-content h4 { font-size: 20px; font-weight: 400; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.slide-content h1 { font-size: 42px; font-weight: bold; margin-bottom: 20px; }

.btn-slider { display: inline-block; background: #0b747a; color: #fff; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: 0.2s; }
.btn-slider:hover { background: #095c61; }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; font-size: 22px; padding: 15px; cursor: pointer; z-index: 10; transition: 0.2s; }
.slider-arrow:hover { background: rgba(0,0,0,0.8); }
.prev { left: 0; }
.next { right: 0; }

.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

.about-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
}

.about-img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.img-1 { height: 280px; grid-row: span 2; }
.img-2 { height: 130px; }
.img-3 { height: 130px; }
.img-4 { height: 200px; grid-column: span 2; width: 80%; margin: 0 auto; display: block; }

.about-content .tag {
    color: #0b747a;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
    font-style: italic;
}

.about-content h2 {
    font-size: 32px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.title-divider hr {
    flex: 1;
    border: none;
    height: 2px;
    background-color: #0b747a;
}
.title-divider span {
    width: 8px;
    height: 8px;
    background-color: #0b747a;
    border-radius: 50%;
}

.about-feature-box {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.about-feature-box img {
    width: 130px;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.about-feature-box h4 {
    font-size: 18px;
    color: #4A5d4e;
    margin-bottom: 6px;
    font-weight: 600;
}

.about-feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.btn-discover-container {
    text-align: center;
    margin-top: 50px;
}

.btn-discover {
    display: inline-block;
    background-color: #0b747a;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
    box-shadow: 0 4px 15px rgba(11, 116, 122, 0.3);
}

.btn-discover:hover {
    background-color: #095c61;
}

.features-banner-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('uploads/7.jpeg') no-repeat center center/cover;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    background-attachment: fixed;
}

.features-banner-container {
    max-width: 1000px;
    margin: 0 auto;
}

.features-banner-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.features-banner-section > .features-banner-container > p {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-check {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-text {
    font-size: 15px;
    font-weight: 500;
    color: #f1f1f1;
}

.btn-features-discover {
    display: inline-block;
    background-color: #fff;
    color: #222;
    padding: 14px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-features-discover:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.beach-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.beach-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.beach-content .beach-tag {
    color: #0b747a;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.beach-content h2 {
    font-size: 32px;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.beach-content .beach-desc-1 {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.beach-content .beach-desc-2 {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.beach-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.beach-image-wrapper img {
    width: 100%;
    max-width: 480px;
    height: 380px;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.beach-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 510px;
    height: 410px;
    border: 3px solid #0b747a;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    top: 5px;
    right: 10px;
    z-index: 1;
    opacity: 0.4;
}

.reasons-section {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 20px;
    text-align: center;
}

.reasons-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 60px;
}

.reasons-title span {
    font-weight: 300;
    color: #0b747a;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
    text-align: left;
}

.reason-card {
    display: flex;
    flex-direction: column;
}

.reason-icon {
    font-size: 36px;
    color: #0b747a;
    margin-bottom: 15px;
}

.reason-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.reason-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #0b747a;
}

.reason-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.how-to-go-section {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 20px;
}

.how-to-go-card {
    background: linear-gradient(135deg, #0b747a 0%, #085257 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(11, 116, 122, 0.25);
    position: relative;
    overflow: hidden;
}

.how-to-go-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.how-to-go-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.how-to-go-card p {
    font-size: 16px;
    color: #e0f2f2;
    max-width: 600px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.how-to-go-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    color: #0b747a;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.how-to-go-box i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.how-to-go-box:hover {
    background-color: #f8f9fa;
    color: #095c61;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.how-to-go-box:hover i {
    transform: scale(1.2);
}

.instagram-section {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 20px;
    text-align: center;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.instagram-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instagram-header h3 i {
    color: #E1306C;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #fd1d1d, #f56040);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.25);
}

.instagram-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 190px;
    background: #f1f3f5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: block;
}

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

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    color: #fff;
    font-size: 22px;
}

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

@media (max-width: 900px) {
    .logo-box { width: 140px; padding: 10px; left: 15px; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; }
    .logo-box img { max-height: 50px; }
    .nav-menu { gap: 15px; }
    .nav-menu li a { font-size: 13px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .beach-grid { grid-template-columns: 1fr; gap: 40px; }
    .beach-image-wrapper img { height: 300px; }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .how-to-go-card { padding: 40px 20px; }
    .how-to-go-card h2 { font-size: 28px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .instagram-item { height: 160px; }
}

@media (max-width: 650px) {
    .reasons-grid { grid-template-columns: 1fr; gap: 30px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .instagram-item { height: 150px; }
    .instagram-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    header { padding: 0 15px; height: 75px; }
    .container { 
        height: 100%; 
        padding: 0 10px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        max-width: 100% !important; 
    }
    .logo-box { 
        position: static; 
        box-shadow: none; 
        width: auto; 
        border-radius: 0; 
        padding: 0; 
        background: transparent; 
    }
    .logo-box img { max-height: 45px; }
    
    .nav-right-area .btn-rezervasyon {
        display: none;
    }

    .mobile-rezervasyon-li {
        display: block;
        margin-top: 15px;
    }

    .mobile-btn-rezervasyon {
        background-color: #0b747a;
        color: #fff;
        padding: 12px 30px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(11, 116, 122, 0.2);
    }

    .nav-menu { 
        position: fixed; 
        top: 80px; 
        left: -100%; 
        width: 100%; 
        height: calc(100vh - 80px); 
        background: #fff; 
        flex-direction: column; 
        align-items: center; 
        justify-content: start; 
        padding-top: 40px; 
        transition: 0.3s; 
        box-shadow: 0 10px 10px rgba(0,0,0,0.05); 
        z-index: 1005; 
    }
    .nav-menu.active { left: 0; }

    .slide-content h1 {
        font-size: 18px !important;
        margin-bottom: 12px;
    }
    .slide-content h4 {
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 20px !important;
    }

    .features-banner-section {
        padding: 60px 15px;
        background-attachment: scroll;
    }
    .features-banner-section h2 {
        font-size: 24px !important;
    }
    .features-banner-section > .features-banner-container > p {
        font-size: 14px;
        margin-bottom: 35px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }
    .feature-text {
        font-size: 14px;
    }

    .beach-content h2 {
        font-size: 22px !important;
    }

    .reasons-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: #fdfdfd; 
    color: #333; 
    line-height: 1.6; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
    margin: 0;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.top-info-bar {
    background-color: #0b747a;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    width: 100%;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: 0.2s;
}

.top-bar-left a:hover {
    color: #b2d8d8;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    width: 26px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.top-bar-right a:hover {
    background-color: #ffffff;
    color: #0b747a;
    transform: translateY(-2px);
}

.top-orange-bar {
    width: 100%;
    height: 5px;
    background-color: #0b747a;
}

header { 
    background: #fff; 
    position: relative; 
    width: 100%;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
    height: 90px; 
}

.logo-box {
    position: absolute;
    left: 20px;
    top: 0;
    background: #fff;
    padding: 12px 18px 25px 18px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 1010;
    text-align: center;
    width: 180px;
}

.logo-box img { 
    max-height: 100px; 
    width: auto;
    object-fit: contain; 
    display: block;
    margin: 0 auto;
}

.logo-box a { 
    font-size: 22px; 
    font-weight: bold; 
    color: #0b747a; 
    text-decoration: none; 
}

.nav-right-area {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu { 
    list-style: none; 
    display: flex; 
    gap: 25px; 
    align-items: center; 
}

.nav-menu li a { 
    text-decoration: none; 
    color: #495057; 
    font-weight: 600; 
    font-size: 14px; 
    letter-spacing: 0.5px;
    transition: 0.2s; 
    text-transform: uppercase;
}

.nav-menu li a:hover, .nav-menu li.aktif a { 
    color: #0b747a; 
}

.btn-rezervasyon {
    background-color: #0b747a;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(11, 116, 122, 0.2);
    text-transform: uppercase;
}

.btn-rezervasyon:hover {
    background-color: #095c61;
    transform: translateY(-2px);
}

.mobile-rezervasyon-li {
    display: none;
}

.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #333; }

.site-content {
    flex: 1;
    width: 100%;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
    transform: translateY(-20px);
    transition: 0.3s ease;
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
    transition: 0.2s;
}

.modal-close:hover {
    color: #333;
}

.modal-box h3 {
    font-size: 24px;
    color: #0b747a;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #eaeaea;
    transition: 0.2s;
}

.contact-item:hover {
    background: #f0f7f7;
    border-color: #0b747a;
    color: #0b747a;
}

.contact-item i {
    font-size: 20px;
    width: 25px;
    text-align: center;
    color: #0b747a;
}

.contact-item.whatsapp i { color: #25D366; }
.contact-item.phone i { color: #0b747a; }
.contact-item.email i { color: #ea4335; }

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-reveal-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-base {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}

.logo-base.bw {
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.25;
}

.logo-color-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%; 
    overflow: hidden;
    transition: height 1.4s cubic-bezier(0.77, 0, 0.175, 1); 
}

.logo-color-wrapper .logo-base.color {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* --- Footer Stilleri --- */
footer { 
    background: #ffffff; 
    color: #555555; 
    padding: 60px 0 30px 0; 
    margin-top: auto; 
    font-size: 14px; 
    width: 100%; 
    border-top: 1px solid #eaeaea;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #0b747a;
}

.footer-col p {
    line-height: 1.7;
    color: #666666;
    font-size: 14px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu-list li a {
    color: #555555;
    text-decoration: none;
    transition: 0.2s;
    font-weight: 500;
}

.footer-menu-list li a:hover {
    color: #0b747a;
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: #e6f2f2;
    color: #0b747a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.footer-socials a:hover {
    background-color: #0b747a;
    color: #fff;
    transform: translateY(-2px);
}

.footer-socials a.google-icon:hover {
    background-color: #4285F4;
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    border-top: 1px solid #eaeaea;
    text-align: center;
    font-size: 13px;
    color: #777777;
}

.floating-right-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background-color: #0b747a;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    z-index: 998;
    box-shadow: 0 6px 20px rgba(11, 116, 122, 0.4);
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.floating-right-btn:hover {
    background-color: #095c61;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 116, 122, 0.5);
    color: #fff;
}

.floating-right-btn i {
    font-size: 18px;
}

@media (max-width: 900px) {
    .logo-box { width: 140px; padding: 10px; left: 15px; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; }
    .logo-box img { max-height: 50px; }
    .nav-menu { gap: 15px; }
    .nav-menu li a { font-size: 13px; }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    header { padding: 0 15px; height: 75px; }
    .container { 
        height: 100%; 
        padding: 0 10px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        max-width: 100% !important; 
    }
    .logo-box { 
        position: static; 
        box-shadow: none; 
        width: auto; 
        border-radius: 0; 
        padding: 0; 
        background: transparent; 
    }
    .logo-box img { max-height: 45px; }
    
    .nav-right-area .btn-rezervasyon {
        display: none;
    }

    .mobile-rezervasyon-li {
        display: block;
        margin-top: 15px;
    }

    .mobile-btn-rezervasyon {
        background-color: #0b747a;
        color: #fff;
        padding: 12px 30px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(11, 116, 122, 0.2);
    }

    .nav-menu { 
        position: fixed; 
        top: 80px; 
        left: -100%; 
        width: 100%; 
        height: calc(100vh - 80px); 
        background: #fff; 
        flex-direction: column; 
        align-items: center; 
        justify-content: start; 
        padding-top: 40px; 
        transition: 0.3s; 
        box-shadow: 0 10px 10px rgba(0,0,0,0.05); 
        z-index: 1005; 
    }
    .nav-menu.active { left: 0; }
    .floating-right-btn {
        right: 15px;
        bottom: 15px;
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* --- YUKARI ÇIK BUTONU STİLLERİ --- */
.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 85px; /* Rezervasyon butonunun hemen üstünde yer alır */
    background-color: #2c3e50;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    z-index: 997;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #0b747a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 116, 122, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        right: 15px;
        bottom: 75px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}