@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&family=Dancing+Script:wght@600&display=swap');

:root {
    --turquoise: #0085AA;
    --deep-navy: #002B45;
    --light-grey: #F8F9FA;
    --anthracite: #333333;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-minimal: 0 15px 45px rgba(0, 0, 0, 0.05);
}

/* SLEEK CUSTOM SCROLLBAR - HIDDEN FOR SIDE INDICATOR */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* SIDE SCROLL INDICATOR */
.side-scroll-container {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    pointer-events: none;
}

.side-scroll-text {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--turquoise);
    font-weight: 900;
    opacity: 0.9;
    animation: pulseScroll 2s infinite;
}

.side-scroll-line {
    width: 3px;
    height: 180px;
    background: rgba(0, 133, 170, 0.15);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.side-scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--turquoise);
    transition: height 0.1s ease-out;
}

@keyframes pulseScroll {
    0% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(5px); opacity: 0.8; }
    100% { transform: translateY(0); opacity: 0.4; }
}

@media (max-width: 768px) {
    .side-scroll-container { right: 10px; }
    .side-scroll-line { height: 100px; }
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: var(--light-grey);
    color: var(--anthracite);
    overflow-x: hidden;
    line-height: 1.8;
    /* Okunabilirlik için satır arası açıldı */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    transition: var(--transition);
    text-decoration: none;
}

/* ===== GÖRÜNTÜDEKİ HAP (PILL) MENÜ ===== */
#navbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    display: block !important;
    /* Ensure it's not a flex container from Bootstrap defaults */
}

.nav-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 43, 69, 0.1);
    border-radius: 100px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.navbar-scrolled {
    top: 10px !important;
}

#navbar .nav-link {
    color: var(--deep-navy) !important;
}

#navbar .navbar-brand {
    filter: none;
}

.nav-link:hover {
    color: var(--turquoise) !important;
}


.navbar-brand {
    font-family: var(--font-heading);
    color: var(--deep-navy) !important;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.navbar-brand span {
    color: var(--turquoise);
}

.nav-link {
    color: var(--deep-navy) !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.8rem !important;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--turquoise) !important;
}

/* ===== PHONE BADGE ===== */
.nav-phone-badge {
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px 18px 5px 6px;
    transition: all 0.3s ease;
}

.navbar-scrolled .nav-phone-badge {
    background: rgba(0, 133, 170, 0.05);
    border-color: rgba(0, 133, 170, 0.2);
}

.phone-icon-wrapper {
    width: 32px;
    height: 32px;
    background: var(--turquoise);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 133, 170, 0.3);
}

.phone-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--deep-navy);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.navbar-scrolled .phone-number {
    color: var(--deep-navy);
}

.nav-phone-badge:hover {
    transform: scale(1.03);
    background: rgba(0, 133, 170, 0.1);
}

/* ===== HAMBURGER ICON ===== */
.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--deep-navy);
    border-radius: 2px;
    transition: 0.25s ease-in-out;
}

.navbar-scrolled .hamburger-icon span {
    background: var(--deep-navy);
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* ===== MOBILE MENU WRAPPER ===== */
.mobile-menu-wrapper {
    background: var(--deep-navy);
    background: linear-gradient(145deg, #002B45, #00456e);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-wrapper .nav-link,
#navbar .mobile-menu-wrapper .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    padding: 10px 20px !important;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.mobile-menu-wrapper .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--turquoise) !important;
}

/* ===== RESPONSIVE NAVBAR ADJUSTMENTS ===== */
@media (max-width: 991px) {
    #navbar {
        top: 10px;
    }

    .nav-container {
        padding: 8px 15px;
        border-radius: 50px;
        width: 96%;
    }

    .navbar-brand img {
        height: 32px !important;
    }

    .btn-book {
        padding: 8px 15px;
        font-size: 0.7rem;
    }

    .nav-right {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 6px 12px;
    }

    .navbar-brand img {
        height: 28px !important;
    }

    .btn-book {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
}

.btn-accent,
.btn-book {
    background: var(--turquoise) !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 10px 25px;
    border-radius: 100px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accent:hover,
.btn-book:hover {
    background: var(--deep-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 133, 170, 0.4);
}



/* ===== HERO SLIDER V2 ===== */
.hero-slider-v2 {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--deep-navy);
}

.hero-slider-v2 .mySwiper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
    transition: transform 10s linear;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.15);
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    line-height: 0;
    pointer-events: none;
}

.hero-wave-divider img {
    width: 100%;
    height: auto;
    display: block;
    /* Görselin genişliğe tam oturması ve boşluk kalmaması için hafif ölçekleme */
    transform: scale(1.01);
    transform-origin: bottom;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 100px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--deep-navy);
}

/* Slider Text Styles */
.hero-subtitle-script {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--turquoise);
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.4s;
}

.hero-title-main .outlined-text {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
    color: transparent;
    transition: all 0.8s ease;
}

.hero-slider-v2 .lead {
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.hero-slider-v2 .d-flex {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

/* Active Slide Animations */
.swiper-slide-active .hero-subtitle-script,
.swiper-slide-active .hero-title-main,
.swiper-slide-active .lead,
.swiper-slide-active .d-flex {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .hero-title-main .outlined-text {
    -webkit-text-stroke: 2px var(--white);
}

/* Custom Swiper Navigation */
.hero-slider-v2 .swiper-button-next,
.hero-slider-v2 .swiper-button-prev {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-slider-v2 .swiper-button-next:after,
.hero-slider-v2 .swiper-button-prev:after {
    display: none;
    /* Hide default swiper font */
}

.hero-slider-v2 .swiper-button-next::before {
    content: '\f061';
    /* FontAwesome arrow-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.hero-slider-v2 .swiper-button-prev::before {
    content: '\f060';
    /* FontAwesome arrow-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.hero-slider-v2 .swiper-button-next:hover,
.hero-slider-v2 .swiper-button-prev:hover {
    background: var(--turquoise);
    border-color: var(--turquoise);
    color: white;
    box-shadow: 0 0 30px rgba(0, 133, 170, 0.5);
}

.hero-slider-v2 .swiper-button-next:hover {
    transform: translateX(10px) scale(1.05);
}

.hero-slider-v2 .swiper-button-prev:hover {
    transform: translateX(-10px) scale(1.05);
}

.hero-slider-v2 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slider-v2 .swiper-pagination-bullet-active {
    background: var(--turquoise);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 133, 170, 0.4);
}

@media (max-width: 991px) {
    .hero-title-main {
        font-size: 3.5rem;
    }

    .hero-subtitle-script {
        font-size: 1.8rem;
    }

    .hero-slider-v2 .swiper-button-next,
    .hero-slider-v2 .swiper-button-prev {
        display: none;
    }
}

/* ===== SECTIONS & CARDS ===== */
.section-padding {
    padding: 8rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.section-title span {
    font-family: var(--font-script);
    color: var(--turquoise);
    font-size: 1.2em;
    vertical-align: middle;
}

.premium-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    border: none;
    box-shadow: var(--shadow-minimal);
    height: 100%;
}

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

.card-icon {
    color: var(--turquoise);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* ===== EDITORIAL ROUTE DESIGN ===== */
.editorial-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-zoom {
    position: absolute;
    inset: 0;
    z-index: 1;
    animation: slowZoom 20s infinite alternate;
}

.hero-bg-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.editorial-hero-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
    width: 100%;
}

.outlined-text {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.script-label {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--turquoise);
    display: block;
    margin-bottom: 1rem;
}

.story-row {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-row:hover .story-image img {
    transform: scale(1.08);
}

.story-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8%;
    background: var(--white);
    position: relative;
}

.content-inner {
    max-width: 500px;
    position: relative;
    z-index: 10;
}

.story-number {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -40px;
    opacity: 0.05;
    -webkit-text-stroke: 2px var(--deep-navy);
    color: transparent;
}

.story-sub {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
    display: block;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.story-divider {
    width: 60px;
    height: 3px;
    background: var(--turquoise);
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--deep-navy);
    letter-spacing: 2px;
    border-bottom: 2px solid var(--turquoise);
    padding-bottom: 8px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-explore:hover {
    color: var(--turquoise);
    padding-left: 10px;
    border-color: var(--deep-navy);
}

/* ===== PREMIUM VIBRANCY EFFECTS ===== */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.bubble {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    animation: bubbleUp 8s linear infinite;
}

@keyframes bubbleUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0;
    }
}

.route-tracker {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60vh;
    background: repeating-linear-gradient(to bottom, var(--turquoise) 0, var(--turquoise) 10px, transparent 10px, transparent 20px);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.route-tracker.visible {
    opacity: 1;
}

.tracker-ship {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

/* ===== BLOG ===== */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-minimal);
}

.blog-content img {
    max-width: 100%;
    border-radius: 15px;
    margin: 2rem 0;
}

/* ===== FOOTER ===== */
#footer {
    background: url('../images/footer-bg.png') center/cover no-repeat;
    color: var(--white);
    padding: 8rem 0 2rem;
    position: relative;
    z-index: 10;
    margin-top: -1px;
}

#footer p,
#footer li,
#footer a {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

#footer a:hover {
    color: var(--white) !important;
}

.footer-main-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
}

.footer-outline-title {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-left: 20px;
}

.footer-middle-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    margin-top: 2rem;
}

.footer-newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 12px 25px;
    color: var(--white);
    width: 100%;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== TESTIMONIALS (GOOGLE YORUMLAR) ===== */
.testimonials-section {
    background-color: #E3EDF2;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 56c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-2-8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm66 66c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM48 94c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM28 28c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm67 20c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm-67 0c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm2-26c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm0 52c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm54 26c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM81 81c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM94 94c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM24 24c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0 64c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM16 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm64 64c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM12 12c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm80 80c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm84 84c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM4 4c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm92 92c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 10rem 0;
}

.review-card-wrapper {
    position: relative;
}

.review-image-box {
    position: relative;
    padding-left: 50px;
}

.review-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.review-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 480px;
    z-index: 10;
}

.review-card::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-size: 4.5rem;
    color: rgba(0, 133, 170, 0.08);
}

.review-stars {
    color: #FFB400;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-rating-text {
    font-size: 0.85rem;
    color: var(--grey-text);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.review-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.review-text {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--deep-navy);
    font-weight: 700;
    margin-bottom: 0;
}

.review-meta {
    font-size: 0.75rem;
    color: var(--turquoise);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.review-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4rem;
}

.review-prev,
.review-next {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--deep-navy);
}

.review-prev:hover,
.review-next:hover {
    background: var(--white);
    border-color: var(--turquoise);
    color: var(--turquoise);
    transform: scale(1.1);
}

.review-counter {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-navy);
    font-weight: 700;
}

.review-counter span {
    font-size: 1rem;
    color: var(--grey-text);
    font-weight: 400;
    margin-left: 5px;
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 5rem 0;
    }

    .review-image-box {
        padding-left: 0;
    }

    .review-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: -80px;
        padding: 2rem;
    }

    .review-image {
        height: 400px;
    }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--turquoise);
    color: var(--anthracite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-form-glass {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
}

.premium-input {
    background: var(--light-grey);
    border: 2px solid transparent;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.premium-input:focus {
    background: var(--white);
    border-color: var(--turquoise);
    box-shadow: 0 10px 20px rgba(0, 133, 170, 0.05);
}

.icon-box-small {
    width: 50px;
    height: 50px;
    background: rgba(0, 133, 170, 0.1);
    color: var(--turquoise);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info-item .label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--turquoise);
    display: block;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0;
}

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

.social-links-contact a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    transition: var(--transition);
}

.social-links-contact a:hover {
    background: var(--turquoise);
    border-color: var(--turquoise);
    color: var(--white);
    transform: translateY(-5px);
}

.py-100 {
    padding: 100px 0;
}

/* ===== HOME ABOUT STYLES ===== */
.about-image-stack {
    position: relative;
    padding: 30px;
}

.about-image-stack .main-img {
    width: 100%;
    border-radius: 30px;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--turquoise);
    line-height: 1;
}

.experience-badge .txt {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-navy);
}

.feat-item i {
    font-size: 1.5rem;
}

/* ===== HOME TESTIMONIALS MODERN ===== */
.review-card-modern {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    margin: 20px;
    transition: var(--transition);
}

.review-card-modern .stars {
    color: #FFB400;
    font-size: 0.8rem;
}

.testimonialSwiper {
    padding-bottom: 50px;
}

/* HELPER CLASSES */
.text-accent {
    color: var(--turquoise) !important;
}

.bg-accent {
    background-color: var(--turquoise) !important;
}

.border-accent {
    border-color: var(--turquoise) !important;
}

@media (max-width: 991px) {
    .nav-container {
        border-radius: 20px;
        margin: 0 15px;
        padding: 10px 20px;
    }

    .hero-content {
        padding-left: 5%;
        text-align: center;
    }

    .hero-subtitle-script {
        font-size: 2rem;
    }

    .route-tracker {
        display: none;
    }
}

/* ============================================================
   BLOG PAGE - PREMIUM REDESIGN
   ============================================================ */

/* ----- BLOG HERO ----- */
.blog-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 120px;
    /* dalga için yer */
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 0.5s ease;
    will-change: transform;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 43, 69, 0.88) 0%,
            rgba(0, 133, 170, 0.55) 60%,
            rgba(0, 43, 69, 0.75) 100%);
}

/* Floating Particles */
.blog-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.blog-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: particleFloat var(--dur, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

.blog-hero-content {
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 133, 170, 0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 133, 170, 0.5);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 24px;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.blog-hero-title-script {
    display: block;
    font-family: var(--font-script);
    font-size: 1.1em;
    color: #4dd4f0;
    text-shadow: 0 0 40px rgba(77, 212, 240, 0.5);
}

.blog-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.blog-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 1rem 2.5rem;
}

.blog-stat-item {
    text-align: center;
}

.blog-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #4dd4f0;
    line-height: 1;
}

.blog-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

.blog-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ----- ANIMATED WAVE DIVIDER ----- */
.blog-wave-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 20;
    pointer-events: none;
    overflow: hidden;
}

.blog-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    /* 2x width for seamless looping */
    height: 100%;
}

/* Arka dalga – yavaş, soldan sağa */
.blog-wave-back {
    animation: waveSlide 12s linear infinite;
    opacity: 0.9;
}

/* Orta dalga – orta hız, ters yön */
.blog-wave-mid {
    animation: waveSlideReverse 8s linear infinite;
    opacity: 0.9;
}

/* Ön dalga (beyaz/arkaplan rengi) – hızlı */
.blog-wave-front {
    animation: waveSlide 5s linear infinite;
}

@keyframes waveSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes waveSlideReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ----- FILTER BAR ----- */
.blog-grid-section {
    padding-top: 4rem;
    /* Dalga zaten boşluk sağlıyor */
}

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}

.blog-filter-btn {
    background: transparent;
    border: 2px solid rgba(0, 43, 69, 0.15);
    color: var(--anthracite);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 22px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--turquoise);
    border-color: var(--turquoise);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 133, 170, 0.3);
}

/* ----- PREMIUM BLOG CARDS ----- */
.blog-card-premium {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 43, 69, 0.07);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 43, 69, 0.14);
}

/* Resim Alanı */
.blog-card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f0f0f0;
}

/* Parlama (Shine) Efekti */
.blog-card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-30deg);
    transition: 0.8s;
    z-index: 2;
}

.blog-card-premium:hover .blog-card-img-wrapper::after {
    left: 150%;
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0085AA 0%, #002B45 100%);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Eğer gerçek img varsa */
.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
}

.blog-card-premium:hover .blog-card-img-placeholder,
.blog-card-premium:hover .blog-card-img-wrapper img {
    transform: scale(1.12) rotate(2deg);
    filter: brightness(1.1);
}

.blog-card-category-tag {
    position: absolute;
    top: 18px;
    left: 0;
    background: var(--turquoise);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 0 100px 100px 0;
    z-index: 5;
}

.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 43, 69, 0.85) 0%, rgba(0, 43, 69, 0) 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.blog-card-premium:hover .blog-card-img-overlay {
    opacity: 1;
}

.blog-card-read-btn {
    background: #fff;
    color: var(--deep-navy);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-card-premium:hover .blog-card-read-btn {
    transform: translateY(0);
}

.blog-card-read-btn:hover {
    background: var(--turquoise);
    color: #fff;
    transform: translateY(-5px) !important;
}

/* Kart Gövdesi */
.blog-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--turquoise);
    font-family: var(--font-body);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-card-premium:hover .blog-card-title a {
    color: var(--turquoise);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--turquoise);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--deep-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--turquoise);
}

.blog-read-more-arrow {
    width: 28px;
    height: 28px;
    background: var(--deep-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-read-more:hover .blog-read-more-arrow {
    background: var(--turquoise);
    transform: translateX(4px);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
}

.blog-author-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--turquoise), var(--deep-navy));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

/* Kart Alt Dalga Dekorasyon */
.blog-card-wave-deco {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.blog-card-wave-deco svg {
    width: 100%;
    height: 20px;
}

/* ----- BLOG EMPTY STATE ----- */
.blog-empty-state {
    color: var(--anthracite);
}

/* ----- BLOG CTA SECTION ----- */
.blog-cta-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #004870 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blog-cta-wave-top {
    line-height: 0;
    height: 80px;
}

.blog-cta-wave-top svg {
    width: 100%;
    height: 100%;
}

.blog-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.blog-cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--turquoise);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 133, 170, 0.4);
}

.blog-cta-btn:hover {
    background: #fff;
    color: var(--deep-navy);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   BLOG DETAIL PAGE
   ============================================================ */

.blog-detail-hero {
    min-height: 60vh;
}

.blog-detail-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.blog-detail-meta {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-detail-meta i {
    margin-right: 6px;
    color: #4dd4f0;
}

/* Article body */
.blog-detail-article {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 50px rgba(0, 43, 69, 0.08);
}

.blog-detail-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

.blog-detail-body h2,
.blog-detail-body h3 {
    font-family: var(--font-heading);
    color: var(--deep-navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-detail-body p {
    margin-bottom: 1.5rem;
}

.blog-detail-body img {
    max-width: 100%;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Share Bar */
.blog-share-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.blog-share-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--deep-navy);
}

.blog-share-icons {
    display: flex;
    gap: 10px;
}

.blog-share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.blog-share-icon:hover {
    transform: translateY(-4px) scale(1.1);
    color: #fff;
}

.blog-share-fb {
    background: #1877F2;
}

.blog-share-tw {
    background: #000;
}

.blog-share-li {
    background: #0A66C2;
}

.blog-share-wa {
    background: #25D366;
}

/* Nav Arrows */
.blog-nav-arrow-btn {
    display: inline-flex;
    align-items: center;
    background: var(--deep-navy);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
}

.blog-nav-arrow-btn:hover {
    background: var(--turquoise);
    color: #fff;
    transform: translateX(-5px);
}

/* ----- SIDEBAR ----- */
.blog-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 43, 69, 0.07);
    margin-bottom: 1.5rem;
}

.blog-sidebar-header {
    border-bottom: 2px solid rgba(0, 133, 170, 0.12);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.blog-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin: 0;
}

.blog-sidebar-post {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: var(--transition);
}

.blog-sidebar-post:last-child {
    border-bottom: none;
}

.blog-sidebar-post:hover {
    padding-left: 8px;
}

.blog-sidebar-post-thumb {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--turquoise), var(--deep-navy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.blog-sidebar-post:hover .blog-sidebar-post-thumb {
    transform: rotate(-5deg) scale(1.1);
}

.blog-sidebar-post-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--turquoise);
    margin-bottom: 2px;
}

.blog-sidebar-post-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--deep-navy);
    line-height: 1.35;
    transition: color 0.3s ease;
}

.blog-sidebar-post:hover .blog-sidebar-post-title {
    color: var(--turquoise);
}

/* CTA Sidebar */
.blog-sidebar-cta {
    background: linear-gradient(160deg, var(--deep-navy) 0%, #005f85 100%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-sidebar-cta-waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sidebar-wave {
    position: absolute;
    width: 100%;
}

.sidebar-wave-1 {
    bottom: 30px;
    animation: waveSlide 6s linear infinite;
}

.sidebar-wave-2 {
    bottom: 15px;
    animation: waveSlideReverse 4s linear infinite;
}

.blog-sidebar-cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4dd4f0;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.blog-sidebar-cta-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.blog-sidebar-cta-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--turquoise);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 10px;
}

.blog-sidebar-cta-btn:hover {
    background: #fff;
    color: var(--deep-navy);
    transform: translateY(-3px);
    color: var(--deep-navy);
}

.blog-sidebar-cta-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
}

.blog-sidebar-cta-btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-hero-section {
        min-height: 85vh;
        padding-bottom: 100px;
    }

    .blog-hero-stats {
        flex-direction: column;
        gap: 1rem;
        border-radius: 20px;
        padding: 1.5rem;
    }

    .blog-stat-divider {
        width: 60px;
        height: 1px;
    }

    .blog-filter-bar {
        gap: 6px;
    }

    .blog-filter-btn {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .blog-detail-article {
        padding: 1.5rem;
    }

    .blog-wave-wrapper {
        height: 80px;
    }
}

/* ===== FAQ SECTION (SSS) PREMIUM STYLES ===== */
.faq-section-premium {
    min-height: 700px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-nav-wrapper {
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.faq-nav-container {
    height: 100%;
}

.faq-nav-header .script-label {
    line-height: 1;
}

.faq-nav-wrapper .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 0 !important;
    background: transparent !important;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: normal !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-nav-wrapper .nav-link-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.faq-number {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--turquoise);
    transition: color 0.4s ease;
}

.faq-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-navy);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
    transition: color 0.4s ease;
}

/* Background Hover Effect */
.faq-nav-wrapper .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--turquoise);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.faq-nav-wrapper .nav-link.active::before,
.faq-nav-wrapper .nav-link:hover::before {
    left: 0;
}

/* Arrow Circle */
.faq-arrow {
    width: 45px;
    height: 45px;
    background: var(--turquoise);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -22.5px;
    z-index: 4;
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    box-shadow: 0 10px 20px rgba(0, 133, 170, 0.3);
}

/* Active & Hover Text States */
.faq-nav-wrapper .nav-link.active .faq-number,
.faq-nav-wrapper .nav-link:hover .faq-number,
.faq-nav-wrapper .nav-link.active .faq-title,
.faq-nav-wrapper .nav-link:hover .faq-title {
    color: #fff !important;
}

.faq-nav-wrapper .nav-link.active .faq-arrow,
.faq-nav-wrapper .nav-link:hover .faq-arrow {
    opacity: 1;
    right: 15px;
    transform: scale(1) rotate(0);
}

.faq-nav-wrapper .nav-link.active .faq-arrow {
    background: #fff;
    color: var(--turquoise);
}

/* Right Content Area */
.faq-image {
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.8s ease;
}

.faq-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
}

.faq-content-inner {
    max-width: 550px;
    margin: 0 auto;
}

.faq-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 133, 170, 0.1);
    color: var(--turquoise);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-detail-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--deep-navy);
}

.faq-detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-mini-feat {
    padding: 1rem;
}

.feat-icon {
    font-size: 1.5rem;
    color: var(--turquoise);
    margin-bottom: 0.8rem;
}

.feat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-navy);
    letter-spacing: 1px;
    display: block;
}

@media (max-width: 1199px) {
    .faq-detail-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .faq-nav-wrapper {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--deep-navy);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    margin-bottom: 30px;
    animation: preloader-pulse 2.5s infinite ease-in-out;
}

.preloader-logo img.white-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.preloader-spinner {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-spinner::after {
    content: '';
    position: absolute;
    left: -50%;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--turquoise);
    animation: preloader-progress 1.5s infinite ease-in-out;
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

@keyframes preloader-progress {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* ===== INTERACTIVE GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--deep-navy);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-card:hover img {
    transform: scale(1.1) rotate(1deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 43, 69, 0.9) 0%, rgba(0, 43, 69, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

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

.overlay-content {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-zoom-btn {
    width: 50px;
    height: 50px;
    background: var(--turquoise);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.gallery-zoom-btn:hover {
    background: #fff;
    color: var(--turquoise);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large,
    .gallery-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ===== ROUTE PAGE ENHANCEMENTS ===== */
.route-tracker-wrapper {
    position: absolute;
    left: 50%;
    top: 100px;
    bottom: 100px;
    width: 2px;
    transform: translateX(-50%);
    z-index: 10;
}

.route-line-path {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(to bottom, var(--turquoise) 0, var(--turquoise) 15px, transparent 15px, transparent 30px);
    opacity: 0.15;
}

.route-boat-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100px;
    transform: translateX(-50%);
    z-index: 11;
    will-change: top;
    pointer-events: none;
}

.route-boat-marker img {
    width: 100%;
    filter: drop-shadow(0 15px 25px rgba(0, 43, 69, 0.2));
    animation: boat-float 3s infinite ease-in-out;
}

@keyframes boat-float {

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

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.route-bg-decor {
    position: absolute;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.decor-anchor {
    top: 5%;
    left: -5%;
    width: 600px;
    transform: rotate(-20deg);
}

.decor-wheel {
    bottom: 5%;
    right: -5%;
    width: 700px;
    transform: rotate(20deg);
}

.title-deco {
    display: block;
    width: 140px;
    margin-top: 10px;
    opacity: 0.4;
}

@media (max-width: 1200px) {
    .route-tracker-wrapper {
        display: none;
    }
}

/* ===== FLOATING ROTATING WHEEL ===== */
.floating-wheel-container {
    position: fixed;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    z-index: 999;
    /* Higher z-index to be above most sections but below specific UI */
    pointer-events: none;
    opacity: 0.6;
    user-select: none;
}


.floating-wheel {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotate-wheel 15s linear infinite;
}


@keyframes rotate-wheel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .floating-wheel-container {
        width: 260px;
        height: 260px;
        bottom: -60px;
        right: -60px;
        opacity: 0.65;
    }
}



/* ===== INTERACTIVE SERVICES (HIZMETLER) ===== */
.services-section-premium {
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../images/hizmetler-bg.png') center/cover fixed;
    padding: 100px 0;
}



/* Rope Decoration */
.service-rope {
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.service-rope img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.decor-left {
    left: 0;
}

.decor-right {
    right: 0;
    transform: scaleX(-1);
}

.services-tab-wrapper {
    position: relative;
    min-height: 700px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 43, 69, 0.1);
}

.services-header-nav {
    position: relative;
    z-index: 20;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-nav-item {
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}


.service-nav-item:last-child {
    border-right: none;
}

.service-nav-item.active {
    background: var(--turquoise);
}

.service-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.5s ease;
}

.service-nav-item.active .service-nav-content {
    transform: translateY(-5px);
}

.service-nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--deep-navy);
    margin: 0;
}

.service-nav-icon {
    font-size: 1.5rem;
    color: rgba(0, 43, 69, 0.2);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-nav-item.active .service-nav-icon {
    color: #fff;
}

/* Panels Area */
.services-content-panels {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.service-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.1);
}

.service-panel.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media (max-width: 991px) {
    .services-section-premium {
        padding: 40px 0;
    }

    .services-tab-wrapper {
        min-height: auto;
        border-radius: 15px;
    }

    .services-header-nav .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .services-header-nav .row::-webkit-scrollbar {
        display: none;
    }

    /* Chrome/Safari */

    .service-nav-item {
        min-width: 120px;
        padding: 20px 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: none;
    }

    .service-nav-title {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .service-nav-icon {
        font-size: 1.2rem;
    }

    .services-content-panels {
        height: 450px;
    }

    .service-glass-overlay {
        width: 100% !important;
        left: 0 !important;
        padding: 30px 20px;
        background: rgba(0, 20, 40, 0.9);
        border-right: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-card-title {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }

    .service-card-desc {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }

    .btn-service {
        padding: 12px 25px !important;
        font-size: 0.8rem !important;
    }
}


/* The Sliding Blurred Glass Overlay */
.service-glass-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 25%;
    background: rgba(0, 43, 69, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

@media (max-width: 991px) {
    .service-glass-overlay {
        width: 100% !important;
        left: 0 !important;
        padding: 20px;
        background: rgba(0, 43, 69, 0.85);
    }
}


.service-info-card {
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s 0.4s ease;
    width: 100%;
}

.service-panel.active .service-info-card {
    opacity: 1;
    transform: translateY(0);
}

.service-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--white);
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-service {
    display: inline-block;
    padding: 12px 25px;
    background: var(--turquoise);
    color: #fff;
    text-decoration: none !important;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-service:hover {
    background: #fff;
    color: var(--deep-navy);
}

/* CLEANUP: DUPLICATE FAQ STYLES REMOVED */
.faq-mini-feat:hover .feat-icon {
    background: var(--turquoise);
    color: #fff;
    transform: translateY(-5px);
}

.feat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.6;
}

@media (min-width: 1200px) {
    .faq-image {
        height: 100% !important;
        min-height: 600px;
    }
}

@media (max-width: 767px) {
    .faq-detail-title {
        font-size: 1.8rem;
    }
}

/* ===== FOOTER & WAVE DECORATION ===== */

/* ===== PREMIUM ABOUT SECTION ===== */
.about-premium-section {
    padding: 120px 0;
    position: relative;
    background: #fff;
}

.about-visual-grid {
    position: relative;
    padding: 40px;
}

.main-frame {
    width: 85%;
    position: relative;
    z-index: 2;
}

.floating-frame {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 60%;
    z-index: 3;
    border: 8px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.experience-card-glass {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 4;
    background: rgba(0, 43, 69, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.exp-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--turquoise);
    line-height: 1;
}

.exp-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.8;
}

.premium-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--turquoise);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
}

.about-lead {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    background: var(--turquoise);
    color: #fff;
    transform: rotateY(180deg);
}

.feature-text h4, .feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-modern-primary:hover {
    background: var(--turquoise);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.about-decor-anchor {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 12rem;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-premium-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-visual-grid {
        padding: 20px;
    }
}

/* ===== PREMIUM CONTACT SECTION ===== */
.contact-premium-section {
    padding: 100px 0;
    position: relative;
    background-color: #f4f7f9 !important;
}

.contact-card-v2 {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card-v2:hover {
    transform: translateY(-5px);
}

.contact-card-v2 .card-icon {
    width: 60px;
    height: 60px;
    background: var(--turquoise);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-card-v2 h5 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 5px;
}

.contact-card-v2 p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.contact-main-wrapper {
    background: #fff;
}

.contact-side-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--navy);
    font-size: 2.5rem;
    line-height: 1.2;
}

.input-group-v2 {
    position: relative;
}

.input-group-v2 i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy);
    opacity: 0.3;
}

.input-group-v2 input,
.input-group-v2 select,
.input-group-v2 textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: #f0f4f8;
    border: 1px solid transparent;
    border-radius: 10px;
    outline: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.input-group-v2 input:focus,
.input-group-v2 textarea:focus {
    background: #fff;
    border-color: var(--turquoise);
}

.btn-sail-now {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--turquoise);
    color: #fff;
    border: none;
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-sail-now .arrow-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.btn-sail-now:hover {
    background: var(--deep-navy);
    color: #fff;
    transform: scale(1.02);
}

/* ===== LOCATION HUB SECTION ===== */
.location-hub-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.direction-step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.direction-step::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(var(--turquoise), transparent);
}

.direction-step:last-child::before {
    display: none;
}

.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(0, 43, 69, 0.1);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.map-container-premium {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.map-info h6 {
    margin: 0;
    font-weight: 800;
    color: var(--navy);
}

.map-info span {
    font-size: 0.8rem;
    color: #888;
}

.btn-get-directions {
    padding: 12px 25px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-get-directions:hover {
    background: var(--turquoise);
    color: #fff;
    transform: translateX(5px);
}

/* ===== ALTERNATING ABOUT BLOCKS ===== */
.about-block {
    padding: 100px 0;
}

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

.about-block.reverse .about-block-grid {
    direction: rtl;
}

.about-block.reverse .about-block-grid>* {
    direction: ltr;
}

.about-block-img-wrap {
    position: relative;
}

.about-block-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.about-floating-icon.top-left {
    top: -40px;
    left: -40px;
}

.about-floating-icon.bottom-right {
    bottom: -40px;
    right: -40px;
}

.about-floating-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.about-script-label {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--turquoise);
    margin-bottom: 10px;
    display: block;
}

.about-block-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--deep-navy);
    margin-bottom: 30px;
}

.about-block-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--anthracite);
    opacity: 0.8;
    margin-bottom: 40px;
}

.about-bullet-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    list-style: none;
    padding: 0;
}

.about-bullet-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.about-bullet-list li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .about-block-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-block.reverse .about-block-grid {
        direction: ltr;
    }

    .about-block-title {
        font-size: 2.5rem;
    }

    .about-floating-icon {
        width: 60px;
        height: 60px;
    }
}

/* ===== WEATHER DISCLAIMER CARD ===== */
.weather-disclaimer-card {
    background: var(--deep-navy);
    border-left: 5px solid var(--turquoise);
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: white;
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--turquoise);
    flex-shrink: 0;
}

.disclaimer-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.disclaimer-text strong {
    color: var(--turquoise);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .weather-disclaimer-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* ===== MOBILE ROUTE STYLES ===== */
.page-hero-mobile {
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.route-mobile-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.route-mobile-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.route-mobile-no {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--turquoise);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 5px 15px rgba(0, 133, 170, 0.3);
}

.route-mobile-time {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 133, 170, 0.1);
    color: var(--turquoise);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.route-mobile-title {
    font-family: var(--font-heading);
    color: var(--deep-navy);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.route-mobile-sub {
    font-size: 0.8rem;
    color: var(--turquoise);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.route-mobile-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== FLEET PREVIEW STYLES (HOMEPAGE) ===== */
.mt-100 { margin-top: 100px; }

.fleet-badge-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--turquoise);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 133, 170, 0.4);
    border: 5px solid white;
    z-index: 10;
    animation: floatingEffect 3s ease-in-out infinite;
}

.fleet-badge-floating .fw-black {
    font-weight: 900;
    line-height: 1;
}

.ls-2 { letter-spacing: 2px; }

@keyframes floatingEffect {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .fleet-badge-floating {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
    .fleet-badge-floating .fs-2 { font-size: 1.5rem !important; }
    .fleet-badge-floating .fs-6 { font-size: 0.6rem !important; }
}