/* =================================================================== */
/* ===================== GENEL AYARLAR VE DEĞİŞKENLER ================ */
/* =================================================================== */
:root {
    --primary-color: #0a2d4d; /* Koyu Mavi */
    --secondary-color: #d4af37; /* Altın Sarısı */
    --light-color: #f8f9fa;
    --dark-color: #333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --font-logo: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    text-decoration: none;
    outline: none;
    border: none;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 8rem;
    scroll-behavior: smooth;
}

body {
    background: var(--light-color);
}

.section-padding {
    padding: 8rem 7%;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: bold;
    border-radius: 5rem;
    cursor: pointer;
}

.btn:hover {
    background: #c5a031;
    transform: scale(1.05);
}

/* =================================================================== */
/* ====================== YENİ EKLENEN ÖZELLİKLER ==================== */
/* =================================================================== */

/* Yükleme Ekranı Stili */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.loader-logo {
    font-family: var(--font-logo);
    font-size: 3rem;
    color: #fff;
    opacity: 1;
    animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}
#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Yukarı Çık Butonu Stili */
#back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    line-height: 5rem;
    border-radius: 50%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.2);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
#back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
#back-to-top:hover {
    transform: scale(1.1);
}

/* Çerez Banner Stili */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(10, 45, 77, 0.95);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 2000;
    transition: bottom 0.5s ease;
    flex-wrap: wrap;
    text-align: center;
}
#cookie-banner.visible {
    bottom: 0;
}
#cookie-banner p {
    margin: 0;
    font-size: 1.5rem;
}


/* =================================================================== */
/* ========================= HEADER VE NAVİGASYON ==================== */
/* =================================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 7%;
    background: rgba(10, 45, 77, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

#header .logo {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

#header .navbar a {
    font-size: 1.7rem;
    margin-left: 2rem;
    color: #fff;
}

#header .navbar a:hover {
    color: var(--secondary-color);
}

/* Dil Değiştirici ve Mobil Menü */
.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.language-switcher {
    display: flex;
    gap: .8rem;
    background: rgba(255,255,255,0.1);
    padding: .5rem;
    border-radius: 5rem;
}
.lang-btn img {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: transform .2s ease;
}
.lang-btn:hover img {
    transform: scale(1.1);
}
.lang-btn.active img {
    border-color: var(--secondary-color);
}

#menu-bars {
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/* =================================================================== */
/* =========================== BÖLÜM STİLLERİ ======================== */
/* =================================================================== */

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

#hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

#hero .hero-content {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: 8vw;
    font-weight: 700;
}

#hero p {
    font-size: 2.5rem;
    margin-top: 1rem;
    font-family: var(--font-logo);
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Turlarımız Bölümü */
.tour-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2.5rem;
    max-width: 120rem;
    margin: 0 auto;
}

.tour-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    overflow: hidden;
}

.tour-card {
    position: relative;
    cursor: pointer;
}

.tour-card img {
    width: 100%;
    height: 38rem;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.tour-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    padding: 1.5rem;
    background-color: #fff;
    margin-top: -0.5rem;
    position: relative;
    z-index: 2;
}

.tour-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 38rem;
    background: rgba(212, 175, 55, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.tour-card-link:hover .card-overlay {
    opacity: 1;
}

.tour-card .card-overlay i {
    font-size: 4rem;
}

.tour-card .card-overlay span {
    font-size: 1.8rem;
    margin-top: 1rem;
    font-weight: bold;
}


/* Yatımız Bölümü */
#yacht .yacht-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

#yacht .yacht-image {
    flex: 1 1 45rem;
}

#yacht .yacht-image img {
    width: 100%;
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}

#yacht .yacht-info {
    flex: 1 1 45rem;
}

#yacht .yacht-info h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
}

#yacht .yacht-info p {
    font-size: 1.6rem;
    color: #666;
    margin: 1.5rem 0;
    line-height: 1.8;
}

/* Hareketli Sayı Stilleri */
.features-counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}
.feature-item-counter {
    background: #fff;
    padding: 1.5rem 1rem;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.05);
}
.feature-item-counter i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}
.feature-item-counter .counter, .feature-item-counter .award-text {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-logo);
    display: block;
    margin-bottom: 0.5rem;
}
.feature-item-counter p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Footer (İletişim) */
#contact {
    background: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 4rem 7%;
}

#contact h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
}

#contact p {
    font-size: 1.6rem;
    margin-top: 1rem;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.socials li a {
    font-size: 3rem;
    color: var(--light-color);
    margin: 0 1.5rem;
}

.socials li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 1.4rem;
}

/* Giriş Animasyonu */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================== */
/* ===================== RESPONSIVE (MOBİL UYUM) ===================== */
/* =================================================================== */
@media (max-width:991px) {
    html {
        font-size: 55%;
    }
    #header {
        padding: 2rem;
    }
    .section-padding {
        padding: 6rem 2rem;
    }
}

@media (max-width:768px) {
    #menu-bars {
        display: initial;
    }
    #header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        border-top: .1rem solid rgba(0,0,0,.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    #header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    #header .navbar a {
        display: block;
        margin: 2rem;
        padding: 1.5rem;
        background: var(--light-color);
        color: var(--primary-color);
        border-radius: .5rem;
    }
    #hero h1 {
        font-size: 12vw;
    }
    .features-counter {
        grid-template-columns: 1fr;
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;
    }
}

/* WhatsApp Styles */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.btn-whatsapp {
    background-color: #25d366 !important;
    color: #fff !important;
    border-color: #25d366 !important;
}

.btn-whatsapp:hover {
    background-color: #128c7e !important;
    border-color: #128c7e !important;
}

/* ===================== BLOG STYLES ==================== */
.blog-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content-card {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.blog-content-card p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.blog-date {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 1rem;
    display: block;
}

.read-more-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.blog-article-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-article-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    margin-top: 3rem;
    font-family: var(--font-heading);
}

.blog-article-content h2:first-child {
    margin-top: 0;
}

.blog-article-content p {
    font-size: 1.6rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-article-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* TOUR DETAIL GALLERY FIX */
#main-tour-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.gallery-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.gallery-thumbnails img:hover, 
.gallery-thumbnails img.active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

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

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

.wa-modal-content {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.wa-modal-overlay.active .wa-modal-content {
    transform: scale(1);
}

.wa-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.wa-modal-close:hover {
    color: var(--secondary-color);
}

.wa-modal-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.wa-modal-desc {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.wa-modal-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wa-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.6rem;
    padding: 1.2rem;
    border-radius: .5rem;
    color: #fff;
    background: #25d366;
    transition: background 0.3s ease;
}

.wa-modal-btn:hover {
    background: #128c7e;
    color: #fff;
}

.wa-modal-btn i {
    font-size: 2rem;
}