/* Temel Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    min-height: 100vh;
    font-family: 'Lato', sans-serif;
    color: #1A2B4C;
    background-color: #f0f5f9;
}

/* Arka Plan Konteyneri */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('yalikiziherobg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 10;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    z-index: 10;
}

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #1A2B4C;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* ANA İÇERİK */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    position: relative;
    z-index: 5;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    color: #1A2B4C;
    text-transform: uppercase;
}

.main-title strong {
    font-weight: 700;
}

/* Karşılaştırma Alanı */
.comparison-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}

/* YAT BÖLÜMÜ (Sol ve Sağ Ortak) */
.yacht-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* ORTA KISIM (VS ve Özellikler) */
.middle-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 20px;
    padding-top: 100px;
}

/* Ortadaki VS yazısı */
.vs-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #1A2B4C;
    opacity: 0.5;
    margin-bottom: 40px;
}

/* Ortak Özellikler Listesi */
.shared-features {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 15px 40px;
    color: #1A2B4C;
    z-index: 2;
    white-space: nowrap;
}

.shared-features ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.shared-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
}

.shared-features svg {
    flex-shrink: 0;
    color: #1A2B4C;
}

/* Etiketler (Yalıkızı 5 / Yalıkızı 4) */
.label-pill {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1A2B4C;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Placeholder for Yachts */
.yacht-image-placeholder {
    width: 300px;
    height: 400px;
    /* Görsel boyutuna göre ayarlanmalı */
    margin: 20px 0;
    /* Yat resimleri geldiğinde position: absolute vb. ayarlanabilir */
}

/* Bilgi Kutusu */
.info-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px 40px;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 20px;
    min-width: 280px;
    z-index: 2;
}

.info-box p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #1A2B4C;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Rezervasyon Butonu */
.btn-reservation {
    background-color: #1A2B4C;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 2;
}

.btn-reservation:hover {
    background-color: #0f1a30;
    transform: translateY(-2px);
}

/* KESİK ÇİZGİLİ OKLAR */
.dashed-arrow {
    position: absolute;
    z-index: 1;
}

/* Ok Konumlandırmaları */
.left-yacht .arrow-top-left {
    top: 80px;
    left: 180px;
}

.left-yacht .arrow-bottom-left {
    bottom: 210px;
    left: 200px;
}

.right-yacht .arrow-top-right {
    top: 80px;
    right: 180px;
}

.right-yacht .arrow-bottom-right {
    bottom: 210px;
    right: 200px;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .comparison-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .vs-divider {
        margin-top: 0;
        margin: 20px 0;
    }

    .dashed-arrow {
        display: none;
        /* Mobilde oklar karışık durabilir, gizliyoruz */
    }

    .header {
        flex-direction: column;
        gap: 20px;
    }
}

/* HERO ALTI BÖLÜMÜ */
.hero-bottom-section {
    width: 100%;
    background-color: #f0f5f9;
    padding: 0 50px 50px 50px;
    position: relative;
    z-index: 2;
    /* Hero alanının (z-index: 10) altında kalsın */
}

.hero-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.text-area {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.8;
    color: #1A2B4C;
    font-style: italic;
    opacity: 0.8;
}

.text-left {
    text-align: right;
    z-index: 3;
}

.text-right {
    text-align: left;
    z-index: 2;
}

/* ============================================================
   DENİZDE SEYİR EDEN YAT VE SAKİN DENİZ GÖRSELİ KATMANI
   ============================================================ */
.image-area {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
    margin-top: -50px;
    /* 50px yukarı alındı, üst yarım kesim hero alanının altına gizlendi */
    position: relative;
    z-index: 2;
}

.yacht-sailing-area {
    position: relative;
    overflow: visible;
}

.yacht-sailing-viewport {
    position: relative;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    transform: translateY(var(--scroll-glide, 0px));
    transition: transform 0.2s ease-out;
}

/* 1. DENİZ GÖRSELİ KATMANI (Sol, Sağ ve Altı Beyaza/Zemine Doğru Yumuşayarak Eriyen) */
.yacht-sea-layer {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 237%;
    height: 118%;
    background-image: url('images/deniz-arkaplan.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    /* border-radius: 40px; */

    /* Sol, sağ ve altı yumuşayarak sayfa zeminine eriyen maskeleme */
    /* -webkit-mask-image: radial-gradient(ellipse 65% 75% at 50% 20%, #000000 30%, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.2) 75%, transparent 92%); */
    /* mask-image: radial-gradient(ellipse 65% 75% at 50% 20%, #000000 30%, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.2) 75%, transparent 92%); */

    /* Sakin denizin hafif su ışıltısı nefesi */
    /* animation: calmSeaBreathe 8s ease-in-out infinite alternate; */
}

/* Sayfa zeminine (#f0f5f9) ekstra kadifemsi yumuşak geçiş katmanı */
.yacht-sea-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 20%, transparent 28%, rgba(240, 245, 249, 0.45) 58%, #f0f5f9 90%);
    pointer-events: none;
}

@keyframes calmSeaBreathe {
    0% {
        opacity: 0.92;
        transform: translateX(-50%) scale(0.99);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.01);
    }
}

/* 2. SAKİN DENİZDE SÜZÜLEN YAT (Dalgasız Denizde Seyir Fiziği) */
.yacht-vessel {
    position: relative;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: center;
    transform-origin: center 35%;
    animation: yachtCalmSailing 7s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: transform;
}

@keyframes yachtCalmSailing {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    25% {
        transform: translate3d(0, 4px, 0) rotate(0.45deg);
    }

    50% {
        transform: translate3d(0, 8px, 0) rotate(0deg);
    }

    75% {
        transform: translate3d(0, 4px, 0) rotate(-0.45deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

.hero-bottom-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(5, 25, 50, 0.45));
    transition: filter 0.5s ease;
}

@media (max-width: 1024px) {
    .hero-bottom-container {
        flex-direction: column;
        gap: 30px;
    }

    .text-area {
        text-align: center;
        padding-top: 20px;
    }

    .text-left,
    .text-right {
        text-align: center;
    }

    .image-area {
        margin-top: -30px;
        flex: auto;
        width: 100%;
        max-width: 340px;
    }

    .yacht-sailing-area {
        max-width: 340px;
    }

    .hero-bottom-img {
        max-width: 100%;
    }

    .yacht-sea-layer {
        width: 140%;
        height: 110%;
    }
}

/* GALERİ BÖLÜMÜ */
.gallery-section {
    width: 100%;
    padding: 100px 50px;
    background-color: #f0f5f9;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1A2B4C;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
}

.gallery-title span {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 4px;
    font-family: 'Lato', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 43, 76, 0.1);
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(26, 43, 76, 0.2);
    z-index: 10;
}

.img-large {
    grid-row: span 2;
}

.img-wide {
    grid-column: span 2;
}

/* SIK SORULAN SORULAR (FAQ) */
.faq-section {
    width: 100%;
    padding: 100px 50px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1A2B4C;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 2px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(26, 43, 76, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1A2B4C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 30px;
}

.accordion-content p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A2B4C;
    opacity: 0.85;
    padding-bottom: 20px;
}

/* LIGHTBOX (Galeri Modalı) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 20px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 1001;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* -------------------------------------
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ
-------------------------------------- */
.page-header {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}



.page-header .header {
    position: relative;
    z-index: 10;
}

.page-title-container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #1A2B4C;
    margin: 40px 0 20px 0;
    padding: 0 20px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-section {
    padding: 100px 50px;
    background-color: #f0f5f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    padding: 40px;
}

.about-image {
    flex: 1;
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.shadow-img {
    box-shadow: 0 20px 40px rgba(26, 43, 76, 0.15);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1A2B4C;
    margin-bottom: 25px;
}

.about-text p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1A2B4C;
    opacity: 0.8;
    margin-bottom: 15px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-section {
    padding: 80px 50px 100px;
    background-color: #ffffff;
    text-align: center;
}

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

.features-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1A2B4C;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.features-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1A2B4C;
    opacity: 0.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(26, 43, 76, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1A2B4C;
    margin-bottom: 15px;
}

.feature-card p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #1A2B4C;
    opacity: 0.8;
}

@media (max-width: 992px) {

    .about-grid,
    .about-grid.reverse {
        flex-direction: column;
    }

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

/* -------------------------------------
   İLETİŞİM SAYFASI STİLLERİ
-------------------------------------- */
.contact-section {
    padding: 80px 50px;
    background-color: #f0f5f9;
}

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

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

.contact-info {
    padding: 40px;
}

.contact-desc {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A2B4C;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 43, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A2B4C;
    margin-right: 20px;
}

.contact-details strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #1A2B4C;
    margin-bottom: 5px;
}

.contact-details span,
.contact-details a {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #1A2B4C;
    text-decoration: none;
    opacity: 0.8;
}

.contact-social p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #1A2B4C;
    margin-bottom: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #1A2B4C;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: background 0.3s ease;
}

.social-btn:hover {
    background: #0d1627;
}

.contact-form-wrapper {
    padding: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A2B4C;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(26, 43, 76, 0.1);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #1A2B4C;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: #fff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.contact-form .submit-btn {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    background-color: #1A2B4C;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form .submit-btn:hover {
    background-color: #0f1a30;
    transform: translateY(-2px);
}

.contact-map-full {
    width: 100%;
    height: 400px;
    margin-top: 50px;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.contact-map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-full {
        height: 300px;
    }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* LÜKS YAT VE KÖRFEZ FOOTER TASARIMI */
.site-footer {
    position: relative;
    background-color: #06122a;
    background-image: url('images/footerbg.webp'), linear-gradient(180deg, #ffffff 0px, #ffffff 160px, #06122a 400px);
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, 100% auto;
    color: #e2e8f0;
    padding-top: clamp(380px, 32.5vw, 640px);
    padding-bottom: 40px;
    padding-left: clamp(25px, 6vw, 80px);
    padding-right: clamp(25px, 6vw, 80px);
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

.footer-inner-wrap {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Üst Marka ve Menü Satırı */
.footer-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    gap: 30px;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    max-height: 52px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.85;
}

.footer-nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2.2vw, 32px);
    flex-wrap: wrap;
}

.footer-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.footer-nav-menu a:hover {
    color: #60a5fa;
    opacity: 1;
}

/* İnce Ayırıcı Çizgi */
.footer-divider-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 45px;
}

/* 4 Kolonlu İletişim & Lokasyonlar */
.footer-columns-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-header {
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.85;
    transition: all 0.25s ease;
}

.social-icon-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #60a5fa;
}

.footer-col-content p {
    font-size: 12.5px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.footer-contact-link a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-link a:hover {
    color: #ffffff;
}

/* En Alt Telif & Yasal Linkler */
.footer-copyright-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 11.5px;
    color: #8fa2b8;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 15px;
}

.footer-copy-text {
    color: #8fa2b8;
    justify-self: start;
}

.footer-legal-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: center;
}

.footer-agency {
    justify-self: end;
}

.agency-logo {
    height: 25px; /* adjust based on logo */
    width: auto;
    display: block;
}

@keyframes shake {
    0%, 20%, 100% { transform: translateX(0) rotate(0); }
    2%, 6%, 10%, 14%, 18% { transform: translateX(-3px) rotate(-2deg); }
    4%, 8%, 12%, 16% { transform: translateX(3px) rotate(2deg); }
}

.shake-effect {
    animation: shake 5s infinite;
}

.footer-legal-nav a {
    color: #8fa2b8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal-nav a:hover {
    color: #ffffff;
}

.legal-sep {
    color: #475569;
}

@media (max-width: 1024px) {
    .footer-columns-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-nav-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        background-size: cover;
        background-position: center top;
        padding-top: 220px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .footer-columns-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand {
        align-items: center;
    }

    .footer-social-list {
        justify-content: center;
    }

    .footer-nav-row {
        align-items: center;
    }

    .footer-nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-copyright-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-copy-text,
    .footer-legal-nav,
    .footer-agency {
        justify-self: center;
    }
}

@media (max-width: 1024px) {
    .gallery-container {
        flex-direction: column;
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .img-large,
    .img-wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* İÇ SAYFA HEADER & HAKKIMIZDA BEYAZ ALAN STİLLERİ */
.inner-page-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(26, 43, 76, 0.08);
    box-shadow: 0 4px 20px rgba(26, 43, 76, 0.03);
    position: relative;
    z-index: 20;
    padding: 20px 50px;
}

.about-page-main {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 25px 100px 25px;
    min-height: 50vh;
}

.about-page-container {
    max-width: 880px;
    margin: 0 auto;
}

.about-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #1A2B4C;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-title-line {
    width: 60px;
    height: 3px;
    background-color: #C19A6B;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.about-text-content {
    font-family: 'Lato', sans-serif;
    font-size: 16.5px;
    line-height: 1.9;
    color: #334155;
}

.about-text-content .lead-paragraph {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.9;
    color: #1e293b;
    margin-bottom: 35px;
    letter-spacing: 0.2px;
}

.about-text-content .content-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A2B4C;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.about-text-content p {
    margin-bottom: 22px;
}

.about-text-content .about-feature-bullets {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-text-content .about-feature-bullets li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.about-text-content .about-feature-bullets li::before {
    content: '◆';
    position: absolute;
    left: 4px;
    top: 0;
    color: #C19A6B;
    font-size: 11px;
}

.about-text-content .about-feature-bullets li strong {
    color: #1A2B4C;
    font-weight: 700;
}

.about-text-content .closing-paragraph {
    font-size: 17.5px;
    line-height: 1.9;
    color: #1A2B4C;
    font-style: italic;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(26, 43, 76, 0.1);
}

@media (max-width: 768px) {
    .inner-page-header {
        padding: 15px 20px;
    }

    .about-page-main {
        padding: 40px 20px 60px 20px;
    }

    .about-main-title {
        font-size: 28px;
    }

    .about-text-content .lead-paragraph {
        font-size: 17px;
    }
}

/* ==========================================================================
   BLOG SHOWCASE & CAROUSEL STYLES (FOOTER ÜSTÜ ALAN)
   ========================================================================== */
.blog-showcase-section {
    width: 100%;
    background-color: #ffffff;
    padding: 85px 25px 95px 25px;
    position: relative;
    z-index: 10;
}

.blog-showcase-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.blog-showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-pretitle {
    font-family: 'Lato', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #C19A6B;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.blog-showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #1A2B4C;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.blog-showcase-line {
    width: 50px;
    height: 3px;
    background-color: #C19A6B;
    margin: 0 auto;
    border-radius: 2px;
}

/* 3'lü Grid Düzeni (Göcek ve İstanbul Sayfaları) */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto;
}

/* Tek Sıra Carousel Düzeni (Ana Sayfa) */
.blog-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.blog-carousel-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 6px 25px 6px;
    scroll-snap-type: x mandatory;
    width: 100%;
}

.blog-carousel-track::-webkit-scrollbar {
    display: none;
}

.slider-card-item {
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 320px;
    scroll-snap-align: start;
}

/* Navigasyon Butonları (Oklar) */
.carousel-nav-btn {
    position: absolute;
    top: calc(50% - 15px);
    transform: translateY(-50%);
    z-index: 15;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(26, 43, 76, 0.12);
    color: #1A2B4C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-nav-btn:hover {
    background: #1A2B4C;
    color: #ffffff;
    border-color: #1A2B4C;
    box-shadow: 0 10px 28px rgba(26, 43, 76, 0.28);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

/* Blog Kart Tasarımı */
.blog-card-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(26, 43, 76, 0.08);
    box-shadow: 0 6px 24px rgba(26, 43, 76, 0.04);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.blog-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(26, 43, 76, 0.12);
}

.blog-card-thumb-wrap {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    display: block;
}

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

.blog-card-item:hover .blog-card-img {
    transform: scale(1.06);
}

.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 43, 76, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.38;
    margin-bottom: 12px;
    min-height: 55px;
}

.blog-card-title a {
    color: #1A2B4C;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card-title a:hover {
    color: #C19A6B;
}

.blog-card-desc {
    font-family: 'Lato', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 22px;
    flex-grow: 1;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #C19A6B;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.25s ease, color 0.25s ease;
    margin-top: auto;
}

.blog-card-readmore:hover {
    gap: 12px;
    color: #1A2B4C;
}

/* ==========================================================================
   BLOG DETAY (POST.PHP) STİLLERİ
   ========================================================================== */
.post-page-main {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 25px 100px 25px;
    min-height: 60vh;
}

.post-page-container {
    max-width: 860px;
    margin: 0 auto;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.post-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-breadcrumb a:hover {
    color: #C19A6B;
}

.post-header-area {
    margin-bottom: 35px;
}

.post-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #1A2B4C;
    line-height: 1.28;
    margin-bottom: 18px;
}

.post-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13.5px;
    color: #64748b;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(26, 43, 76, 0.08);
}

.post-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-featured-wrap {
    width: 100%;
    height: 480px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 45px;
    box-shadow: 0 12px 35px rgba(26, 43, 76, 0.08);
}

.post-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-article-body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.95;
    color: #334155;
}

.post-article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #1A2B4C;
    margin-top: 42px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.post-article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 600;
    color: #1A2B4C;
    margin-top: 32px;
    margin-bottom: 14px;
}

.post-article-body p {
    margin-bottom: 24px;
}

.post-article-body ul, .post-article-body ol {
    margin: 20px 0 30px 24px;
    line-height: 1.85;
}

.post-article-body li {
    margin-bottom: 10px;
}

.post-article-body strong {
    color: #1A2B4C;
}

.post-article-body blockquote {
    border-left: 4px solid #C19A6B;
    padding: 18px 26px;
    margin: 32px 0;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #1e293b;
}

.post-cta-box {
    background: linear-gradient(135deg, #1A2B4C 0%, #0d172a 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 45px 35px;
    margin-top: 55px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(26, 43, 76, 0.15);
}

.post-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 12px;
}

.post-cta-box p {
    color: #cbd5e1;
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 26px auto;
}

.post-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C19A6B;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(193, 154, 107, 0.3);
}

.btn-cta-call:hover {
    background: #d4a977;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 154, 107, 0.45);
    color: #ffffff;
}

/* Blog Responsive Kuralları */
@media (max-width: 1024px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .slider-card-item {
        flex: 0 0 calc((100% - 25px) / 2);
    }

    .prev-btn {
        left: -12px;
    }

    .next-btn {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .blog-showcase-section {
        padding: 55px 20px 65px 20px;
    }

    .blog-showcase-title {
        font-size: 26px;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .slider-card-item {
        flex: 0 0 86%;
        min-width: 280px;
    }

    .carousel-nav-btn {
        display: none;
    }

    .post-page-main {
        padding: 40px 20px 60px 20px;
    }

    .post-main-title {
        font-size: 26px;
    }

    .post-featured-wrap {
        height: 250px;
    }

    .post-article-body {
        font-size: 15.5px;
    }

    .post-cta-box {
        padding: 30px 20px;
    }

    .post-cta-box h3 {
        font-size: 22px;
    }
}
/* -------------------------------------
   MOBILE HEADER & HAMBURGER MENU
-------------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1A2B4C;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .header {
        flex-direction: row !important;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 99;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0;
    }

    .main-nav a {
        font-size: 22px;
    }
    
    .main-nav .lang-switch {
        margin-left: 0 !important;
        margin-top: 20px;
    }
    
    /* Hamburger active state animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* -------------------------------------
   HEADER ACTIONS (MOBILE: WhatsApp & Lang)
-------------------------------------- */
.header-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.header-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-wa-btn:hover {
    transform: scale(1.1);
}

.header-lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #1A2B4C;
}

.header-lang-switch a {
    text-decoration: none;
    color: #1A2B4C;
    transition: opacity 0.3s ease;
}

.header-lang-switch a.active {
    font-weight: bold;
}

@media (max-width: 992px) {
    .header-actions {
        display: flex;
    }

    .main-nav .lang-switch {
        display: none !important;
    }
}

/* Global visibility helpers */
.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    /* -------------------------------------
       MOBILE EXCLUSIVE LAYOUTS
    -------------------------------------- */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block;
    }

    .hero-section {
        background-image: none !important;
        min-height: auto;
    }

    .header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        background: transparent !important;
    }

    /* Logo adjustment */
    .logo-img {
        max-height: 55px !important;
    }

    /* Top banner */
    .mobile-top-banner {
        position: relative;
        text-align: center;
        z-index: 1;
    }

    .mobile-title {
        position: absolute;
        top: 25%;
        left: 0;
        width: 100%;
        color: #1A2B4C;
        font-size: 20px;
        line-height: 1.3;
        z-index: 2;
        padding: 0 10px;
    }

    .mobile-banner-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .mobile-dashed-arrow {
        position: absolute;
        z-index: 2;
    }

    .mobile-arrow-left {
        bottom: -20px;
        left: 30%;
    }

    .mobile-arrow-right {
        bottom: -20px;
        right: 30%;
    }

    /* Mobile compare section (Vertical layout side by side -> Row) */
    .mobile-yacht-compare {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 5px;
        padding: 0 5px;
        position: relative;
        z-index: 2;
        margin-top: 20px;
    }

    .mobile-yacht-info {
        flex: 1;
        width: 50%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-label {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        padding: 0;
        margin-bottom: 10px;
        background: transparent;
        border: none;
        color: #1A2B4C;
        letter-spacing: 1px;
    }

    .mobile-info-box {
        font-size: 10px;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 2px;
        margin-bottom: 15px;
        line-height: 1.4;
        color: #1A2B4C;
        word-break: break-word;
    }

    .mobile-info-box p {
        margin: 5px 0;
    }

    .mobile-info-box strong {
        font-weight: 700;
        display: block; /* Make label block so values wrap naturally if needed */
        margin-bottom: 2px;
    }

    .mobile-btn-res {
        font-size: 9px;
        padding: 8px 5px;
        border-radius: 30px;
        width: 100%;
        max-width: 150px;
        background-color: #1A2B4C;
        color: #fff;
        text-transform: none;
        letter-spacing: normal;
        font-weight: 600;
        text-align: center;
    }

    /* Shared features strip for mobile */
    .shared-features {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        padding: 20px 5px;
        border-radius: 0;
        width: 100%;
        background-color: #f1f3f5;
    }

    .shared-features ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 10px 15px;
    }

    .shared-features li {
        flex: 0 0 auto;
        font-size: 12px;
        min-width: 80px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    /* Mobile Text Block */
    .mobile-hero-bottom-section {
        padding: 40px 20px;
        background-color: #fff;
        text-align: center;
    }

    .mobile-hero-text p {
        font-family: 'Playfair Display', serif;
        font-size: 14px;
        line-height: 1.6;
        color: #1A2B4C;
        margin-bottom: 20px;
    }

    .mobile-text-heading {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        color: #1A2B4C;
        margin: 20px 0 10px 0;
    }
}

/* ============================================================ */
/* YACHT DETAIL PAGE                                            */
/* ============================================================ */
.yacht-detail-page {
    background-color: #f8f9fa;
    padding-bottom: 4rem;
}

.yacht-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.yacht-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.yacht-hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.yacht-hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

.yacht-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Key Features */
.yacht-key-features {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2rem;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 150px;
}

.feature-item svg {
    color: #1A2B4C;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-val {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A2B4C;
}

/* Grid Layout */
.yacht-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .yacht-content-grid {
        gap: 2rem;
    }
}

/* ==========================================================================
   Filomuz (Our Fleet) Page Styles
   ========================================================================== */

.fleet-page {
    background-color: #f8fafc;
    padding-bottom: 5rem;
}

.inner-page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 43, 76, 0.6);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.inner-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.inner-hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

.fleet-container {
    max-width: 1200px;
    margin: -3rem auto 0;
    padding: 0 1.5rem;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.fleet-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.fleet-image {
    position: relative;
    height: 250px;
}

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

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #fff;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1px;
}

.fleet-content {
    padding: 2rem;
}

.fleet-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1A2B4C;
    margin-bottom: 0.5rem;
}

.fleet-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.fleet-feature {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #334155;
}

.fleet-actions {
    text-align: center;
}

.fleet-actions .btn-reservation {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .inner-page-hero {
        height: 300px;
    }
    .inner-hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .yacht-content-grid {
        grid-template-columns: 1fr;
    }
    .yacht-sidebar {
        order: -1;
    }
}

.yacht-main-col h2 {
    font-family: 'Playfair Display', serif;
    color: #1A2B4C;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.yacht-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    color: #2d3748;
    font-weight: 500;
    font-size: 1rem;
}

.equipment-item svg {
    color: #D4AF37;
}

/* Photo Gallery */
.yacht-photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

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

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

/* Sidebar Booking Widget */
.booking-widget {
    background: #1A2B4C;
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.widget-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #D4AF37;
}

.widget-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.widget-specs li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
}

.widget-specs li strong {
    font-weight: 400;
    opacity: 0.8;
}

.widget-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #D4AF37;
    color: #1A2B4C;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.widget-btn:hover {
    background: #c39b2b;
    color: #1A2B4C;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #D4AF37;
}

@keyframes zoomIn {
    from {transform:scale(0.9)}
    to {transform:scale(1)}
}

@media (max-width: 768px) {
    .yacht-hero h1 { font-size: 2.5rem; }
    .yacht-key-features {
        flex-direction: column;
        padding: 1.5rem;
    }
    .yacht-photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #D4AF37;
    color: #1A2B4C;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}
