* {
    outline: none;
}
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}
section {
    border: none;
    outline: none;
}

/* Blog Carousel Styles */
.blog-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.blog-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
.blog-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Video Popup Styles */
.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
.video-popup.active {
    display: block;
}
.video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}
.video-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-height: 70%;
    max-width: 500px;
    z-index: 10001;
}
.video-popup-wrapper {
    position: relative;
    padding-bottom: 80vh;
    height: 0;
    /* overflow: hidden; */
    /* height: 100%; */
}
.video-popup-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    transition: opacity 0.3s;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}
.video-popup-close:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .video-popup-content {
        width: 95%;
    }
    .video-popup-close {
        top: -40px;
        font-size: 36px;
    }
}

.font-jost {
    font-family: 'Jost', sans-serif;
}
.gold-gradient {
    background: linear-gradient(90deg, #9d6321 0%, #e2dc90 50%, #9d6321 100%);
}
.language-dropdown {
    position: relative;
    z-index: 10000;
}
.language-dropdown-menu {
    position: fixed;
    /* Width is set by JS (position()) to match the toggle button (CG/EN/RU box).
       min-width:0 so the JS width is not overridden by a larger min-width. */
    min-width: 0;
    background: white;
    border: 2px solid #d4af37;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    z-index: 10001;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}
.language-dropdown-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.language-dropdown-item {
    display: block;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    letter-spacing: 0.35px;
    text-align: center;
    color: #222;
    text-decoration: none;
}
.language-dropdown-item + .language-dropdown-item {
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}
.language-dropdown-item:hover {
    background: #d4af37;
    color: white;
}
.language-dropdown-item.is-active {
    font-weight: 600;
}
.awards-slider {
    position: relative;
}
.hero-slide-indicator {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
    /* padding: 12px 8px; */
    /* margin: -12px -8px; */
}
.hero-slide-indicator.active {
    background: rgba(255, 255, 255, 1);
    /* height: 1px; */
}
/* .hero-slide-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
} */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.floating-social {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    transition: all 0.3s;
    position: relative;
}
.floating-social a:hover {
    background: #d4af37;
}
.floating-social a.instagram-icon {
    background: #d4af37;
}
.floating-social img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Smooth Scroll Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes badgeReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Initial hidden state */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-scale {
    opacity: 0;
    will-change: transform, opacity;
}

/* Revealed states with smooth animations */
.scroll-reveal.revealed {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-reveal-left.revealed {
    animation: fadeInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-reveal-right.revealed {
    animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-reveal-scale.revealed {
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Faster animations for Welcome to Kotor section */
section.bg-\[#f5f5f5\].pt-16 .scroll-reveal.revealed {
    animation: fadeInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

section.bg-\[#f5f5f5\].pt-16 .scroll-reveal-scale.revealed {
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Faster animations for map section (Find us here) */
section.bg-\[#f5f5f5\].pt-16 h2.scroll-reveal.revealed {
    animation: fadeInUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

section.bg-\[#f5f5f5\].pt-16 .h-\[500px\].scroll-reveal-scale.revealed {
    animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Faster animations for Cruise Ship section */
section.bg-\[#f5f5f5\].pb-16 .scroll-reveal-scale.revealed {
    animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

section.bg-\[#f5f5f5\].pb-16 .scroll-reveal.revealed {
    animation: fadeInUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Sequential badge animations */
.award-badge {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

.award-badge.revealed {
    animation: badgeReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.award-badge.revealed:nth-child(1) { animation-delay: 0.1s; }
.award-badge.revealed:nth-child(2) { animation-delay: 0.2s; }
.award-badge.revealed:nth-child(3) { animation-delay: 0.3s; }
.award-badge.revealed:nth-child(4) { animation-delay: 0.4s; }

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Card hover effects */
.tour-card {
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.3);
}

/* Button animations */
.gold-gradient {
    position: relative;
    overflow: hidden;
}

.gold-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.gold-gradient:hover::before {
    left: 100%;
}

/* Award badges animation */
.award-badge {
    transition: transform 0.3s ease;
}

.award-badge:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Navigation — bez slideDown animacije (uklonjeno 2026-06-01).
   Header treba da bude OD POČETKA fixan na vrh stranice, bez "iskakanja"
   pri svakom page load-u / klik na menu link. Smooth shrink na scroll
   ostaje (definisan u `nav { transition: ... }` blok ispod). */

/* Testimonial fade */
.testimonial-content {
    transition: opacity 0.5s ease;
}

/* Image zoom on hover */
.image-zoom-container {
    overflow: hidden;
}

.image-zoom-container img {
    transition: transform 0.5s ease;
}

.image-zoom-container:hover img {
    transform: scale(1.1);
}

/* Lightbox Gallery */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: calc(100% - 200px);
    max-height: 90vh;
    animation: scaleIn 0.3s ease;
    margin: 0 100px;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: #d4af37;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.gallery-image {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Styles */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.mobile-menu-button span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 99;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
    background: #222;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.mobile-menu-links a {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.mobile-menu-links a:hover {
    color: #d4af37;
    padding-left: 25px;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    nav {
        height: auto !important;
        min-height: 100px;
    }
    
    /* nav .absolute {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    } */
    
    .max-w-\[1440px\] {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    
    .px-\[90px\] {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    /* Hide desktop navigation content but keep logo visible */
    nav .absolute.left-\[358px\] {
        display: none !important;
    }
    .mobile-menu-button {
        display: flex !important;
        position: absolute !important;
        right: 30px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 101 !important;
    }
    nav .w-\[112px\] {
        width: 60px !important;
        height: 60px !important;
        transition: none !important;
        animation: none !important;
    }
    
}

@media (max-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr !important;
    }
    
    .floating-social {
        display: none !important;
    }
    
    .hero-slide-indicator {
        width: 40px !important;
    }
    
    h1 {
        font-size: 28px !important;
        line-height: 38px !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    .text-\[45px\] {
        font-size: 32px !important;
    }
    
    .text-\[32px\] {
        font-size: 24px !important;
    }
    
    /* Better touch targets */
    /* button, a {
        min-height: 44px;
    } */
    
    /* Ensure clickable elements are properly sized */
    .tour-card button,
    .gold-gradient {
        min-height: 48px !important;
    }
    
    /* Tablet navigation adjustments */
    nav {
        height: auto !important;
        min-height: 90px !important;
    }
    
    .px-\[90px\] {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    
    
}

@media (max-width: 768px) {
    
    
    
    
    nav {
        position: fixed !important;
        height: 77px !important;
        min-height: 77px !important;
        max-height: 77px !important;
        /* padding: 5px 20px !important; */
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 50 !important;
        background: white !important;
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
    
    /* Keep logo visible and properly positioned - left aligned */
    nav .absolute.left-\[90px\] {
        display: block !important;
        position: absolute !important;
        left: 20px !important;
        top: 8px !important;
        transform: none !important;
        z-index: 51 !important;
        transition: none !important;
        animation: none !important;
    }
    
    
    
    /* Hero Section */
    .h-\[750px\] {
        height: 650px !important;
        min-height: 650px !important;
    }
    
    .mt-\[143px\] {
        margin-top: 70px !important;
    }
    
    /* Hero content padding to prevent overlap with header */
    section.relative.h-\[750px\] {
        padding-top: 80px !important;
        padding-bottom: 30px !important;
    }
    
    section.relative.h-\[750px\] > .relative.z-10 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        height: 100% !important;
    }
    
    /* Hide hero slide indicators on mobile */
    .hero-slide-indicator {
        display: none !important;
    }
    
    .px-\[90px\] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .max-w-\[1440px\] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    h1 {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    
    .text-\[45px\] {
        font-size: 26px !important;
        line-height: 34px !important;
    }
    
    .text-\[35px\] {
        font-size: 22px !important;
        line-height: 30px !important;
    }
    
    .text-\[32px\] {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    .text-\[24px\] {
        font-size: 18px !important;
    }
    
    .text-\[16px\] {
        font-size: 14px !important;
    }
    
    /* Hero Features - Stack vertically */
    .hero-slide-indicator {
        width: 30px !important;
    }
    
    .gap-\[45px\] {
        gap: 15px !important;
        flex-direction: column !important;
    }
    
    .gap-\[32px\] {
        gap: 15px !important;
        flex-direction: column !important;
    }
    
    .gap-\[46px\] {
        gap: 20px !important;
    }
    
    /* Buttons */
    .w-\[287px\], .w-\[380px\] {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .h-\[60px\] {
        height: 40px !important;
    }
    
    .h-\[46px\] {
        height: 42px !important;
    }
    
    /* WhatsApp Instant Answer button - fix overflow */
    button.w-\[380px\].h-\[60px\] {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 16px !important;
        gap: 8px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }
    
    button.w-\[380px\].h-\[60px\] img {
        width: 24px !important;
        height: 24px !important;
        flex-shrink: 0 !important;
    }
    
    /* Tour Cards */
    .grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
    
    .gap-\[30px\] {
        gap: 20px !important;
    }
    
    /* Awards — container ID je `award-badges-container-{sectionId}` (npr.
       `-2`), pa raniji `#award-badges-container` (bez suffiksa) NIJE matchovao
       ništa → badge-vi se na mobilnom nisu ni wrap-ovali ni smanjivali pa su
       se prelivali van ekrana. Uz to `max-md:flex-wrap/gap-6/justify-center`
       Tailwind varijante nisu u kompajliranom output-u. Koristimo prefix
       attribute selektor (isto kao JS: `[id^="award-badges-container"]`). */
    [id^="award-badges-container"] {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 14px !important;
    }
    
    /* Sve badge slike na jednaku visinu (proporcionalno desktop ~80px → 46px). */
    [id^="award-badges-container"] img {
        height: 46px !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    /* White-wrapped badge (Google) — wrapper hugs sliku (height auto) + manji
       padding, da slika (46px) ne prelije fiksiranu visinu wrappera. */
    [id^="award-badges-container"] > div {
        height: auto !important;
        padding: 4px !important;
    }
    
    section.relative.h-\[750px\] .flex.flex-col.items-center.gap-5 {
        margin-top: 15px !important;
        gap: 15px !important;
    }
    
    section.relative.h-\[750px\] .flex.flex-col.items-center.gap-5 p {
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }
    
    /* Map Section */
    .h-\[500px\] {
        height: 300px !important;
    }
    
    /* Improve map section padding */
    section.bg-\[#f5f5f5\].pt-16.pb-16 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Cruise Ship Section */
    .h-\[523px\] {
        height: auto !important;
        min-height: 400px !important;
    }
    
    /* Improve cruise section content */
    section.relative.h-\[523px\] .relative.z-10 {
        padding: 30px 20px !important;
    }
    
    /* Testimonials */
    .testimonial-content {
        padding: 20px !important;
    }
    
    section button[class*="absolute"] {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Testimonial section improvements */
    section.bg-\[#f5f5f5\].pt-20.pb-24 {
        padding-top: 50px !important;
        padding-bottom: 60px !important;
    }
    
    .w-\[200px\].h-\[200px\] {
        width: 120px !important;
        height: 120px !important;
    }
    
    .text-\[75px\] {
        font-size: 50px !important;
    }
    
    /* Boat Section */
    .h-\[671px\] {
        height: 400px !important;
    }
    
    .mb-\[113px\] {
        margin-bottom: 40px !important;
    }
    
    .p-\[42px\] {
        padding: 20px !important;
    }
    
    .p-\[54px\] {
        padding: 20px !important;
    }
    
    /* Improve content box padding on mobile */
    section .bg-\[#f5f5f5\].p-\[54px\] {
        padding: 25px !important;
    }
    
    /* Gallery */
    .h-\[738px\] {
        height: 400px !important;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix gallery images on mobile - complete rewrite */
    section.pb-24.bg-\[#f5f5f5\] {
        position: relative;
        z-index: 1;
        padding-bottom: 60px !important;
        margin-bottom: 0 !important;
        isolation: isolate;
    }
    
    /* Main gallery grid - convert to single column */
    section.pb-24.bg-\[#f5f5f5\] > div > .grid.grid-cols-2 {
        display: block !important;
        width: 100% !important;
    }
    
    /* First column (large image container) */
    section.pb-24.bg-\[#f5f5f5\] > div > .grid.grid-cols-2 > div:first-child {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px !important;
        display: block !important;
    }
    
    /* Second column (nested grid container) */
    section.pb-24.bg-\[#f5f5f5\] > div > .grid.grid-cols-2 > div:last-child {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Nested grid - also convert to single column */
    section.pb-24.bg-\[#f5f5f5\] > div > .grid.grid-cols-2 > div:last-child.grid {
        display: block !important;
    }
    
    /* All gallery images */
    section.pb-24.bg-\[#f5f5f5\] img.gallery-image {
        width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 0 20px 0 !important;
        border-radius: 8px !important;
        position: relative !important;
    }
    
    /* Remove margin from last image */
    section.pb-24.bg-\[#f5f5f5\] img.gallery-image:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Ensure Who We Are section starts properly */
    section.py-24.bg-white {
        position: relative;
        z-index: 2;
        margin-top: 0 !important;
        padding-top: 60px !important;
        background: white !important;
    }
    
    /* Who We Are - Reorder content on mobile */
    section.py-24.bg-white .grid.grid-cols-2 {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 30px !important;
    }
    
    /* Who We Are */
    .h-\[644px\] {
        height: 845px !important;
    }
    
    /* Who We Are image - full height on mobile */
    section.py-24.bg-white .h-\[644px\] img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: top !important;
    }
    
    /* Who We Are text box */
    section.py-24.bg-white .bg-\[#f5f5f5\] {
        order: -1 !important;
    }
    
    /* Our Boat Section - FORCE mobile image display */
    /* Maximum specificity override for mobile boat images */
    body.lista-tura section.py-24.bg-white div.order-2.lg\:order-2.w-full div.lg\:hidden.space-y-4.w-full,
    section.py-24.bg-white div.order-2 div.lg\:hidden.space-y-4,
    div.lg\:hidden.space-y-4.w-full,
    .lg\:hidden.space-y-4 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Force individual image containers */
    body.lista-tura section.py-24.bg-white div.lg\:hidden.space-y-4 div.h-\[240px\],
    section.py-24.bg-white div.lg\:hidden div,
    div.lg\:hidden.space-y-4 div,
    .lg\:hidden.space-y-4 > div {
        display: block !important;
        width: 100% !important;
        height: 240px !important;
        min-height: 240px !important;
        margin-bottom: 16px !important;
        overflow: hidden !important;
        border-radius: 8px !important;
        background: #f0f0f0 !important;
    }
    
    /* Force boat images to display */
    body.lista-tura section.py-24.bg-white img[alt="Our Boat 1"],
    body.lista-tura section.py-24.bg-white img[alt="Our Boat 2"],
    section.py-24.bg-white div.lg\:hidden img,
    div.lg\:hidden.space-y-4 img,
    .lg\:hidden img[alt*="Boat"] {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 240px !important;
        object-fit: cover !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 100% !important;
    }
    
    /* Footer */
    .grid-cols-\[339px_1fr\] {
        grid-template-columns: 1fr !important;
    }
    
    .gap-\[117px\] {
        gap: 40px !important;
    }
    
    .gap-\[90px\] {
        gap: 20px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    footer .relative.z-10 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .mb-\[75px\] {
        margin-bottom: 40px !important;
    }
    
    .w-\[549px\] {
        width: 100% !important;
    }
    
    /* Fix footer social icons */
    footer .flex.gap-\[22px\] {
        gap: 15px !important;
        justify-content: center !important;
    }
    
    /* Spacing */
    .py-24 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    /* Tours section spacing */
    section.py-24:first-of-type {
        padding-top: 50px !important;
    }
    
    .pt-16 {
        padding-top: 40px !important;
    }
    
    .pb-16 {
        padding-bottom: 40px !important;
    }
    
    .pt-20 {
        padding-top: 50px !important;
    }
    
    .pb-24 {
        padding-bottom: 60px !important;
    }
    
    .mb-16 {
        margin-bottom: 40px !important;
    }
    
    .mb-12 {
        margin-bottom: 30px !important;
    }
    
    .mb-8 {
        margin-bottom: 20px !important;
    }
    
    .mb-6 {
        margin-bottom: 20px !important;
    }
    
    /* Text wrapping and overflow */
    h1, h2, h3, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Hero buttons stack */
    .flex.items-center.gap-\[32px\] {
        width: 100%;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    /* Improve button layouts on mobile */
    /* .flex.gap-2 {
        flex-direction: column !important;
    } */
    
    .flex.gap-2 button {
        width: 100% !important;
    }
    
    /* Fix hero content centering and spacing */
    section.relative.h-\[750px\] .text-center {
        padding: 0 10px !important;
    }
    
    section.relative.h-\[750px\] h1 {
        margin-bottom: 20px !important;
    }
    
    /* Navigation logo positioning */
    nav .absolute.left-\[90px\] {
        left: 0 !important;
        top: 3px !important;
    }
    
    /* Hero content centering */
    section.relative.h-\[750px\] .relative.z-10 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Testimonial arrows positioning */
    section.relative button.absolute {
        left: 10px !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    section.relative button.absolute.right-0 {
        right: 10px !important;
        left: auto !important;
    }
    
    /* Lightbox responsive */
    .lightbox-content {
        max-width: calc(100% - 40px) !important;
        margin: 0 20px !important;
    }
    
    .lightbox-prev {
        left: 10px !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(212, 175, 55, 0.9) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .lightbox-next {
        right: 10px !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(212, 175, 55, 0.9) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .lightbox-close {
        top: 10px !important;
        right: 10px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 35px !important;
        background: rgba(212, 175, 55, 0.9) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .lightbox-counter {
        font-size: 16px !important;
        background: rgba(0, 0, 0, 0.7) !important;
        padding: 8px 16px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    .text-\[45px\] {
        font-size: 22px !important;
        line-height: 30px !important;
    }
    
    .text-\[35px\] {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    .text-\[32px\] {
        font-size: 18px !important;
        line-height: 26px !important;
    }
    
    .text-\[24px\] {
        font-size: 16px !important;
    }
    
    .px-\[90px\], .max-w-\[1440px\] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .h-\[750px\] {
        height: 450px !important;
    }
    
    .h-\[500px\], .h-\[523px\] {
        height: 300px !important;
    }
    
    .h-\[671px\], .h-\[644px\], .h-\[738px\] {
        height: 300px !important;
    }
    
    #award-badges-container img,
    #award-badges-container div {
        height: 50px !important;
    }
    
    .gap-\[46px\] {
        gap: 15px !important;
    }
    
    .w-\[60px\] {
        width: 40px !important;
    }
    
    .py-24 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .p-\[42px\], .p-\[54px\] {
        padding: 20px !important;
    }
}

@media (max-width: 375px) {
    nav {
        height: 60px !important;
    }
    
    nav .w-\[112px\] {
        width: 60px !important;
        height: 60px !important;
    }
    
    .h-\[750px\] {
        height: 400px !important;
    }
    
    .text-\[45px\] {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    .text-\[35px\] {
        font-size: 18px !important;
        line-height: 26px !important;
    }
    
    .text-\[32px\] {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    
    .h-\[50px\] {
        height: 45px !important;
    }
    
    .h-\[42px\] {
        height: 38px !important;
    }
    
    .text-\[14px\] {
        font-size: 12px !important;
    }
    
    .text-\[12px\] {
        font-size: 11px !important;
    }
    
    /* EMERGENCY BOAT IMAGE FIX */
    section .lg\:hidden,
    .lg\:hidden.space-y-4 {
        display: block !important;
    }
    
    .lg\:hidden img {
        display: block !important;
        width: 100% !important;
        height: 240px !important;
        object-fit: cover !important;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .h-\[750px\] {
        height: 100vh !important;
    }
    
    nav {
        height: 60px !important;
    }
    
    .mt-\[143px\] {
        margin-top: 60px !important;
    }
    
    .py-24 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .mobile-menu {
        padding-top: 60px !important;
    }
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

.bg-opacity-20 {
    opacity: 0.2;
}
.bg-opacity-30 {
    opacity: 0.3;
}
.bg-opacity-35 {
    opacity: 0.35;
}

/* img {
    max-width: 100%;
    height: auto;
} */

/* Shrinking Navigation on Scroll */
nav {
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                padding 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav.scrolled {
    height: 90px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav .absolute.left-\[90px\] {
    transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav.scrolled .absolute.left-\[90px\] {
    top: 10px !important;
}

nav .w-\[112px\] {
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

nav.scrolled .w-\[112px\] {
    width: 70px !important;
    height: 70px !important;
}

/* Reduce phone button size when scrolled */
nav .bg-\[#d4af37\].w-\[61px\].h-\[61px\] {
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

nav.scrolled .bg-\[#d4af37\].w-\[61px\].h-\[61px\] {
    width: 45px !important;
    height: 45px !important;
}

nav .bg-\[#d4af37\].w-\[61px\].h-\[61px\] img {
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

nav.scrolled .bg-\[#d4af37\].w-\[61px\].h-\[61px\] img {
    width: 16px !important;
    height: 16px !important;
}

/* Hide top contact info section when scrolled */
nav .h-\[38px\] {
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                margin 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 38px;
    overflow: hidden;
}

nav.scrolled .h-\[38px\] {
    opacity: 0;
    max-height: 0;
    margin: 0;
    pointer-events: none;
}

/* Hide separator line when scrolled */
nav .bg-gray-200 {
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav.scrolled .bg-gray-200 {
    opacity: 0;
    height: 0;
}

/* Adjust menu position when scrolled */
nav .absolute.top-\[64px\] {
    transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav.scrolled .absolute.top-\[64px\] {
    top: 50% !important;
    transform: translateY(-50%);
}

/* Menu links smooth animation */
nav .absolute.top-\[64px\] a {
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Adjust language dropdown position */
nav .language-dropdown {
    transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav.scrolled .language-dropdown {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
}

/* Language button smooth animation */
nav .language-dropdown button {
    transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

/* Mobile - disable shrinking effect */
@media (max-width: 768px) {
    /* Keep navigation at original size on mobile */
    nav.scrolled {
        height: 77px !important;
        min-height: 77px !important;
        max-height: 77px !important;
        box-shadow: none !important;
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
    
    /* Prevent logo from shrinking on scroll */
    nav.scrolled .w-\[112px\] {
        width: 60px !important;
        height: 60px !important;
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
    
    /* Prevent logo position change on scroll */
    nav.scrolled .absolute.left-\[90px\] {
        position: absolute !important;
        left: 0 !important;
        top: 3px !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    
    /* Disable all scroll animations on mobile */
    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right,
    .scroll-reveal-scale,
    .award-badge {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    .scroll-reveal.revealed,
    .scroll-reveal-left.revealed,
    .scroll-reveal-right.revealed,
    .scroll-reveal-scale.revealed,
    .award-badge.revealed {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    /* Tour badge mobile optimization */
    .tour-card .absolute.top-0.left-0 {
        height: auto !important;
        width: auto !important;
        max-width: calc(100% - 16px) !important;
        padding: 6px 10px !important;
        margin: 8px !important;
        top: 8px !important;
        left: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        white-space: nowrap !important;
        border-radius: 4px !important;
        position: absolute !important;
    }
    
    .tour-card .absolute.top-0.left-0 img {
        width: 12px !important;
        height: 15px !important;
        flex-shrink: 0 !important;
    }
    
    .tour-card .absolute.top-0.left-0 span {
        font-size: 10px !important;
        line-height: 1.2 !important;
    }
    
    /* Hide testimonial indicator dots on mobile */
    section.bg-\[#f5f5f5\].pt-20.pb-24 .flex.justify-center.mt-8,
    section.bg-\[#f5f5f5\].pt-20.pb-24 .flex.justify-center.scroll-reveal {
        display: none !important;
    }
    
    /* Hide arrows on mobile */
    section.bg-\[#f5f5f5\].pt-20.pb-24 button.absolute {
        display: none !important;
    }
    
    /* Remove margins since arrows are hidden */
    section.bg-\[#f5f5f5\].pt-20.pb-24 .max-w-\[800px\] {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
    }
}

/* Lista-tura page responsive styles */
@media (max-width: 1024px) {
    /* Tablet styles */
    .lista-tura .grid.grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lista-tura .grid-cols-339px-1fr {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lista-tura .space-y-143px {
        margin-top: 60px;
    }
    
    .lista-tura .ml-\[200px\] {
        margin-left: 0;
    }
    
    /* Our Boat section tablet optimizations */
    /* .lista-tura .relative[style*="height: 614px"] {
        height: 500px !important;
    } */
    
    .lista-tura .relative[style*="height: 614px"] .absolute.top-0.left-0.w-\[420px\] {
        width: 90% !important;
        max-width: 380px;
    }
    
    .lista-tura .relative[style*="height: 614px"] .absolute.top-\[143px\].left-\[200px\].w-\[408px\] {
        left: 150px !important;
        width: 85% !important;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    /* Mobile styles for lista-tura */
    .lista-tura .px-\[90px\] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .lista-tura .h-\[275px\] {
        height: 250px !important;
    }
    
    .lista-tura .py-\[65px\] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .lista-tura .py-16 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .lista-tura .py-24 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .lista-tura .py-\[75px\] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .lista-tura .gap-\[50px\] {
        gap: 20px !important;
    }
    
    .lista-tura .gap-\[30px\] {
        gap: 20px !important;
    }
    
    .lista-tura .gap-\[40px\] {
        gap: 30px !important;
    }
    
    .lista-tura .gap-\[117px\] {
        gap: 40px !important;
    }
    
    .lista-tura .mb-\[65px\] {
        margin-bottom: 40px !important;
    }
    
    .lista-tura .mb-\[75px\] {
        margin-bottom: 40px !important;
    }
    
    .lista-tura .mb-16 {
        margin-bottom: 40px !important;
    }
    
    .lista-tura .mb-6 {
        margin-bottom: 20px !important;
    }
    
    .lista-tura .mb-8 {
        margin-bottom: 24px !important;
    }
    
    .lista-tura .h-\[471px\] {
        height: 250px !important;
    }
    
    .lista-tura .h-\[247px\] {
        height: 200px !important;
    }
    
    .lista-tura .h-\[36px\] {
        height: auto !important;
        min-height: 30px;
    }
    
    .lista-tura .h-\[31px\] {
        height: auto !important;
        min-height: 25px;
    }
    
    .lista-tura .w-\[209px\],
    .lista-tura .w-\[194px\],
    .lista-tura .w-\[201px\],
    .lista-tura .w-\[197px\] {
        width: auto !important;
        max-width: calc(100% - 16px) !important;
    }
    
    .lista-tura .w-\[180px\] {
        width: 140px !important;
    }
    
    .lista-tura .w-\[287px\] {
        width: 100% !important;
        max-width: 280px;
    }
    
    .lista-tura .w-\[380px\] {
        width: 100% !important;
        max-width: 320px;
    }
    
    .lista-tura .text-\[45px\] {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    
    .lista-tura .text-\[32px\] {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    
    .lista-tura .text-\[24px\] {
        font-size: 20px !important;
        line-height: 26px !important;
    }
    
    .lista-tura .text-\[20px\] {
        font-size: 18px !important;
    }
    
    .lista-tura .text-\[16px\] {
        font-size: 14px !important;
    }
    
    .lista-tura .text-\[12px\] {
        font-size: 10px !important;
    }
    
    .lista-tura .leading-48-505px {
        line-height: 32px !important;
    }
    
    .lista-tura .leading-55px {
        line-height: 36px !important;
    }
    
    .lista-tura .leading-51px {
        line-height: 36px !important;
    }
    
    .lista-tura .leading-30px {
        line-height: 24px !important;
    }
    
    .lista-tura .tracking-1px {
        letter-spacing: 0.5px !important;
    }
    
    .lista-tura .tracking-0-5px {
        letter-spacing: 0.25px !important;
    }
    
    .lista-tura .tracking-0-35px {
        letter-spacing: 0.2px !important;
    }
    
    .lista-tura .space-y-143px > :not(:first-child) {
        margin-top: 40px !important;
    }
    
    .lista-tura .flex.items-center.gap-90px {
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
    
    .lista-tura .flex.items-center.gap-32px {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .lista-tura .flex.items-center.justify-center {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .lista-tura .grid-cols-3.gap-30px {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .lista-tura .grid.grid-cols-2.gap-40px {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .lista-tura .max-w-\[939px\] {
        max-width: 100% !important;
    }
    
    .lista-tura .max-w-\[549px\] {
        max-width: 100% !important;
    }
    
    .lista-tura .max-w-\[269px\] {
        max-width: 200px !important;
    }
    
    .lista-tura .max-w-\[635px\] {
        max-width: 100% !important;
    }
    
    .lista-tura .max-w-\[607px\] {
        max-width: 100% !important;
    }
    
    /* Tour cards mobile optimization */
    /* .lista-tura .tour-card {
        margin-bottom: 20px;
    } */
    
    .lista-tura .tour-card .px-4 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .lista-tura .tour-card .pt-4 {
        padding-top: 16px !important;
    }
    
    .lista-tura .tour-card .pb-6 {
        padding-bottom: 20px !important;
    }
    
    .lista-tura .tour-card .flex.gap-2 {
        gap: 12px !important;
    }
    
    .lista-tura .tour-card .flex-1 {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .lista-tura .tour-card .h-\[46px\] {
        height: 44px !important;
    }
    
    .lista-tura .tour-card .text-\[18px\] {
        font-size: 14px !important;
    }
    
    .lista-tura .tour-card .text-\[32px\] {
        font-size: 24px !important;
    }
    
    .lista-tura .tour-card .text-\[14px\] {
        font-size: 12px !important;
    }
    
    /* Footer mobile optimization */
    .lista-tura footer .py-16 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .lista-tura footer .w-\[136px\] {
        width: 80px !important;
        height: 80px !important;
    }
    
    .lista-tura footer .mb-\[22px\] {
        margin-bottom: 16px !important;
    }
    
    .lista-tura footer .gap-\[15px\] {
        gap: 12px !important;
    }
    
    .lista-tura footer .gap-\[35px\] {
        gap: 20px !important;
    }
    
    .lista-tura footer .text-\[24px\] {
        font-size: 18px !important;
    }
    
    .lista-tura footer .w-\[129px\] {
        width: 80px !important;
    }
    
    .lista-tura footer .w-\[27px\] {
        width: 20px !important;
        height: 20px !important;
    }
    
    .lista-tura footer .w-\[23px\] {
        width: 18px !important;
        height: 18px !important;
    }
    
    .lista-tura footer .w-\[20px\] {
        width: 16px !important;
        height: 16px !important;
    }
    
    .lista-tura footer .w-\[25px\] {
        width: 20px !important;
        height: 16px !important;
    }
    
    .lista-tura footer .w-\[24px\] {
        width: 20px !important;
        height: 20px !important;
    }
    
    .lista-tura footer .w-\[19px\] {
        width: 16px !important;
        height: 20px !important;
    }
    
    .lista-tura footer .text-\[18px\] {
        font-size: 14px !important;
    }
    
    .lista-tura footer .h-\[2px\] {
        height: 1px !important;
    }
    
    .lista-tura footer .w-\[549px\] {
        width: 200px !important;
    }
    
    /* Filter buttons mobile */
    .lista-tura .flex.gap-\[50px\].items-center {
        /* justify-content: center !important; */
        gap: 16px !important;
    }
    
    /* Boat section mobile */
    .lista-tura .space-y-\[143px\] > div:first-child {
        margin-bottom: 30px !important;
    }
    
    .lista-tura .space-y-\[143px\] > div:last-child {
        margin-top: 30px !important;
        margin-left: 0 !important;
    }
    
    /* CTA section mobile */
    .lista-tura .bg-gradient-to-b {
        background: #f5f5f5 !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .lista-tura .px-\[90px\] {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .lista-tura .text-\[45px\] {
        font-size: 28px !important;
        line-height: 34px !important;
    }
    
    .lista-tura .text-\[32px\] {
        font-size: 22px !important;
        line-height: 28px !important;
    }
    
    .lista-tura .text-\[24px\] {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    
    .lista-tura .w-\[180px\] {
        width: 120px !important;
    }
    
    .lista-tura .h-\[37px\] {
        height: 32px !important;
    }
    
    .lista-tura .text-\[16px\] {
        font-size: 12px !important;
    }
    
    .lista-tura .tour-card .text-\[18px\] {
        font-size: 12px !important;
    }
    
    .lista-tura .tour-card .text-\[32px\] {
        font-size: 20px !important;
    }
    
    .lista-tura .tour-card .text-\[14px\] {
        font-size: 10px !important;
    }
    
    .lista-tura .tour-card .h-\[46px\] {
        height: 40px !important;
    }
    
    .lista-tura .h-\[275px\] {
        height: 200px !important;
    }
    
    .lista-tura .h-\[247px\] {
        height: 160px !important;
    }
    
    .lista-tura .h-\[471px\] {
        height: 200px !important;
    }
    
    /* Our Boat section mobile optimizations */
    .lista-tura .relative[style*="height: 614px"] {
        height: auto !important;
        min-height: auto !important;
    }
    
    /* Reservation Page Mobile Optimizations */
    .rezervacija-page section.relative.h-\[343px\] {
        height: 250px !important;
    }
    
    .rezervacija-page section.relative.h-\[343px\] h1 {
        font-size: 26px !important;
        line-height: 34px !important;
    }
    
    /* Step indicators - stack vertically on mobile */
    .rezervacija-page section .flex.items-center.justify-center.gap-\[100px\] {
        /* flex-direction: column !important; */
        gap: 30px !important;
    }
    
    /* .rezervacija-page .w-\[205px\].h-\[205px\] {
        width: 180px !important;
        height: 180px !important;
    } */
    
    .rezervacija-page .text-\[60px\] {
        font-size: 48px !important;
    }
    
    .rezervacija-page .text-\[18px\] {
        font-size: 16px !important;
    }
    
    /* Form and Summary - stack vertically */
    .rezervacija-page .grid.grid-cols-\[1fr_auto\] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .rezervacija-page .w-\[673px\],
    .rezervacija-page .w-\[533px\] {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Form inputs - stack vertically */
    .rezervacija-page .grid.grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Adults/Children counters - adjust layout */
    .rezervacija-page .flex.items-end.gap-\[37px\] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    .rezervacija-page .h-\[55px\].w-\[1px\] {
        display: none !important;
    }
    
    /* Action buttons - stack vertically */
    .rezervacija-page .flex.items-center.gap-\[219px\] {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .rezervacija-page .w-\[227px\] {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Summary box adjustments */
    .rezervacija-page .text-\[32px\] {
        font-size: 22px !important;
        line-height: 30px !important;
    }
    
    .rezervacija-page .p-\[25px\] {
        padding: 20px !important;
    }
    
    .rezervacija-page .px-\[25px\] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .rezervacija-page .mb-\[25px\] {
        margin-bottom: 20px !important;
    }
    
    /* Summary info - stack items */
    .rezervacija-page .flex.items-center.gap-\[15px\] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .rezervacija-page .flex.items-center.gap-\[15px\] .h-\[35px\] {
        display: none !important;
    }
    
    /* Total price box */
    .rezervacija-page .h-\[76px\] {
        height: 65px !important;
    }
    
    .rezervacija-page .text-\[20px\] {
        font-size: 18px !important;
    }
    
    .lista-tura .relative[style*="height: 614px"] .absolute.top-0.left-0.w-\[420px\] {
        position: relative !important;
        width: 100% !important;
        height: 220px !important;
        margin-bottom: 15px;
        top: 0 !important;
        left: 0 !important;
    }
    
    .lista-tura .relative[style*="height: 614px"] .absolute.top-\[143px\].left-\[200px\].w-\[408px\] {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 220px !important;
        margin-bottom: 15px;
    }
    
    .lista-tura .grid.grid-cols-2.gap-\[40px\].items-center {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Reorder grid - text first, then images on mobile */
    .lista-tura .grid.grid-cols-2.gap-\[40px\].items-center > div:first-child {
        order: 2;
    }
    
    .lista-tura .grid.grid-cols-2.gap-\[40px\].items-center > div:last-child {
        order: 1;
    }
    
    /* Text and button optimizations for mobile */
    .lista-tura .text-\[45px\] {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    
    .lista-tura .text-\[16px\] {
        font-size: 14px !important;
        line-height: 22px !important;
    }
    
    .lista-tura .h-\[60px\] {
        height: 50px !important;
        width: 100% !important;
        font-size: 20px !important;
    }
    
    .lista-tura .mt-8 button {
        width: 100% !important;
    }
    
    /* Additional mobile optimizations */
    .lista-tura .py-24 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .lista-tura .gap-\[40px\] {
        gap: 20px !important;
    }
    
    .lista-tura .space-y-4 {
        gap: 16px !important;
    }
}

/* Testimonials Swiper Styling */
.testimonials-swiper {
    position: relative;
}

.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 32px;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 60px;
    height: 3px;
    background: #222222;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0 23px !important;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: #d4af37;
    /* width: 14px; */
    /* height: 14px; */
}

.testimonials-button-prev,
.testimonials-button-next {
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonials-button-prev img,
.testimonials-button-next img {
    width: auto;
    height: 45%;
}

.testimonials-button-prev:hover,
.testimonials-button-next:hover {
    /* opacity: 0.7; */
    background-color: #D4AF37;
}

/* Testimonials Mobile Responsive */
@media (max-width: 768px) {
    /* Section padding adjustment */
    section.bg-\[#f5f5f5\] .max-w-\[1440px\] {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    
    /* Testimonials container width */
    .testimonials-swiper {
        max-width: 100% !important;
    }
    
    /* Image sizing */
    .testimonials-swiper .swiper-slide img {
        width: 120px !important;
        height: 120px !important;
    }
    
    /* Quote mark */
    .testimonials-swiper .swiper-slide .text-\[75px\] {
        font-size: 50px !important;
        line-height: 1 !important;
        margin-bottom: 20px !important;
    }
    
    /* Name styling */
    .testimonials-swiper .swiper-slide .text-\[24px\] {
        font-size: 20px !important;
    }
    
    /* Body text and location */
    .testimonials-swiper .swiper-slide .text-\[16px\] {
        font-size: 14px !important;
        line-height: 22px !important;
        padding: 0 10px;
    }
    
    /* Spacing adjustments */
    .testimonials-swiper .swiper-slide .mb-8 {
        margin-bottom: 20px !important;
    }
    
    .testimonials-swiper .swiper-slide .mb-6 {
        margin-bottom: 16px !important;
    }
    
    /* Hide navigation arrows */
    .testimonials-button-prev,
    .testimonials-button-next {
        display: none !important;
    }
    
    section .testimonials-button-prev,
    section .testimonials-button-next {
        display: none !important;
    }
    
    /* Pagination spacing */
    .testimonials-swiper .swiper-pagination {
        margin-top: 24px !important;
    }
}

@media (max-width: 480px) {
    /* Section padding for small mobile */
    section.bg-\[#f5f5f5\] .max-w-\[1440px\] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Image sizing for small screens */
    .testimonials-swiper .swiper-slide img {
        width: 100px !important;
        height: 100px !important;
    }
    
    /* Quote mark */
    .testimonials-swiper .swiper-slide .text-\[75px\] {
        font-size: 40px !important;
        margin-bottom: 16px !important;
    }
    
    /* Name */
    .testimonials-swiper .swiper-slide .text-\[24px\] {
        font-size: 18px !important;
    }
    
    /* Body text */
    .testimonials-swiper .swiper-slide .text-\[16px\] {
        font-size: 13px !important;
        line-height: 20px !important;
    }
    
    /* Tighter spacing for small screens */
    .testimonials-swiper .swiper-slide .mb-8 {
        margin-bottom: 16px !important;
    }
}

/* Pagination Styling */
.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    display: inline-block;
}

.pagination-link,
.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-link:hover,
.pagination-arrow:hover {
    background-color: #f5f5f5;
    border-color: #d4af37;
    color: #d4af37;
}

.pagination-link.active {
    background-color: #d4af37;
    border-color: #d4af37;
    color: white;
    font-weight: 600;
}

.pagination-arrow {
    padding: 0;
    width: 40px;
}

.pagination-arrow svg {
    width: 8px;
    height: 14px;
}

.tour-detail .itinerary-item.itinerary-item-center{
    align-items: center !important;
}

/* Pagination Mobile Responsive */
@media (max-width: 768px) {
    .pagination-link,
    .pagination-arrow {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .pagination-arrow {
        width: 36px;
    }
    
    .pagination {
        gap: 6px !important;
    }
}

@media (max-width: 480px) {
    .pagination-link,
    .pagination-arrow {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
        padding: 0 8px;
    }
    
    .pagination-arrow {
        width: 32px;
    }
    
    .pagination {
        gap: 4px !important;
    }
}

/* Reservation Pages Responsive */
@media (max-width: 1024px) {
    /* Tablet adjustments */
    .reservation-step-badge {
        width: 150px !important;
        height: 150px !important;
    }
    
    .reservation-step-badge p:first-child {
        font-size: 70px !important;
    }
    
    .reservation-step-badge p:last-child {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    /* Mobile: Stack layout */
    section .flex.items-start.justify-between {
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    /* Booking summary card - full width on mobile */
    .w-\[533px\] {
        width: 100% !important;
    }
    
    /* Step indicator badge - centered on mobile */
    .reservation-step-badge,
    div[class*="w-[205px] h-[205px]"] {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto;
    }
    
    div[class*="w-[205px] h-[205px]"] p:first-child {
        font-size: 60px !important;
        line-height: 1 !important;
    }
    
    div[class*="w-[205px] h-[205px]"] p:last-child {
        font-size: 12px !important;
    }
    
    /* Button stacking */
    .flex.items-center.gap-6,
    .flex.justify-center.gap-4 {
        /* flex-direction: column !important; */
        width: 100% !important;
    }
    
    .flex.items-center.gap-6 button,
    .flex.justify-center.gap-4 a {
        width: 100% !important;
        max-width: 300px;
    }
    
    /* Terms popup - mobile adjustments */
    #termsPopup > div {
        width: 90% !important;
        margin: 20px;
    }
    
    #termsPopup .px-\[156px\] {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    
    #termsPopup .py-\[92px\] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    #termsPopup h2 {
        font-size: 32px !important;
    }
    
    #termsPopup .w-\[425px\] {
        width: 100% !important;
    }
    
    /* Success page - mobile */
    .grid.grid-cols-2 {
        grid-template-columns: 1fr !important;
    }
    
    /* Hero title - mobile */
    h1.text-\[52px\] {
        font-size: 36px !important;
        line-height: 44px !important;
    }
    
    /* Success icon - smaller on mobile */
    .w-\[120px\].h-\[120px\] {
        width: 80px !important;
        height: 80px !important;
    }
    
    .w-\[120px\].h-\[120px\] svg {
        width: 40px !important;
        height: 30px !important;
    }
}

@media (max-width: 480px) {
    /* Small mobile - further adjustments */
    .max-w-\[1440px\].px-\[90px\] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    h1.text-\[52px\],
    h1 {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    
    h2.text-\[45px\] {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    
    h2.text-\[24px\] {
        font-size: 20px !important;
    }
    
    h3.text-\[18px\] {
        font-size: 16px !important;
    }
    
    /* Smaller text on very small screens */
    p.text-\[18px\] {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    
    p.text-\[24px\] {
        font-size: 18px !important;
    }
    
    /* Booking details padding */
    .bg-\[#f5f5f5\].p-8 {
        padding: 20px !important;
    }
    
    .bg-\[#fff9e6\].p-6 {
        padding: 16px !important;
    }
    
    /* Button text smaller */
    button, a {
        /* font-size: 14px !important; */
        /* padding-left: 20px !important; */
        /* padding-right: 20px !important; */
    }

    .mobile-menu-links a {
        padding: 10px 0 !important;
    }
    
    /* Step badge even smaller */
    div[class*="w-[205px] h-[205px]"] {
        width: 100px !important;
        height: 100px !important;
    }
    
    div[class*="w-[205px] h-[205px]"] p:first-child {
        font-size: 50px !important;
    }
    
    div[class*="w-[205px] h-[205px]"] p:last-child {
        font-size: 10px !important;
    }
}

/* Blog Page Responsive */
@media (max-width: 1024px) {
    /* Blog grid: 3 cols → 2 cols on tablet */
    .grid.grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 30px !important;
    }
}

@media (max-width: 768px) {
    /* Blog grid: 2 cols → 1 col on mobile */
    .grid.grid-cols-3 {
        grid-template-columns: 1fr !important;
        /* gap: 60px !important; */
    }
    
    /* Blog post images smaller */
    article .h-\[395px\] {
        height: 300px !important;
    }
    
    /* Date badge smaller */
    article .w-\[207px\] {
        width: 160px !important;
        height: 45px !important;
    }
    
    article .text-\[16px\].tracking-\[2px\] {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    /* Smaller blog images on very small screens */
    article .h-\[395px\] {
        height: 250px !important;
    }
    
    /* Pagination smaller */
    .pagination button,
    .pagination .w-\[38px\] {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
}

/* Destination Details Page Responsive */
@media (max-width: 1024px) {
    /* Destination: 2 column layout → stack on tablet */
    .grid.grid-cols-\[1fr_339px\] {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
    
    /* Sidebar full width */
    .grid.grid-cols-\[1fr_339px\] > div:last-child {
        max-width: 100%;
    }
    
    /* Related destinations: 3 cols → 2 cols */
    section .grid.grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: 620px 300px 300px;
    grid-template-rows: 288px 288px 288px 288px;
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* First large image - spans 2 rows */
.gallery-grid .gallery-large-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Images 2-5 in 2x2 grid */
.gallery-grid img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.gallery-grid img:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.gallery-grid img:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.gallery-grid img:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

/* Images 6-9 in 2x2 grid */
.gallery-grid img:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
}

.gallery-grid img:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
}

.gallery-grid img:nth-child(8) {
    grid-column: 1;
    grid-row: 4;
}

.gallery-grid img:nth-child(9) {
    grid-column: 2;
    grid-row: 4;
}

/* Second large image - spans 2 rows */
.gallery-grid .gallery-large-2 {
    grid-column: 3;
    grid-row: 3 / 5;
}

/* Gallery Grid Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }
    
    .gallery-grid .gallery-large-1,
    .gallery-grid .gallery-large-2 {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 250px;
    }
    
    .gallery-grid img:nth-child(2),
    .gallery-grid img:nth-child(3),
    .gallery-grid img:nth-child(4),
    .gallery-grid img:nth-child(5),
    .gallery-grid img:nth-child(6),
    .gallery-grid img:nth-child(7),
    .gallery-grid img:nth-child(8),
    .gallery-grid img:nth-child(9) {
        grid-column: auto;
        grid-row: auto;
        height: 150px;
    }
}

@media (max-width: 768px) {
    /* Hero image smaller */
    section.h-\[602px\] {
        height: 400px !important;
    }
    
    /* Headings smaller */
    h1.text-\[45px\] {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    
    h2.text-\[32px\] {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    
    h2.text-\[35px\] {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    
    /* Related destinations: 2 cols → 1 col */
    section .grid.grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
    
    /* Related destination images */
    section .h-\[280px\] {
        height: 250px !important;
    }
}

@media (max-width: 480px) {
    /* Hero even smaller */
    section.h-\[602px\] {
        height: 300px !important;
    }
    
    /* Sidebar cards padding */
    .bg-\[#f5f5f5\].p-8,
    .border-2.border-\[#d4af37\].p-8 {
        padding: 20px !important;
    }
    
    /* Related destination images smaller */
    section .h-\[280px\] {
        height: 200px !important;
    }
}

/* Our Boats Page Responsive Styles */
@media (max-width: 1024px) {
    /* Tablet: Adjust image gallery layout */
    #boats-gallery-container .w-\[620px\] {
        width: 50% !important;
    }
    
    #boats-gallery-container .w-\[300px\] {
        width: 100% !important;
    }
    
    #boats-gallery-container .h-\[596px\] {
        height: 450px !important;
    }
    
    #boats-gallery-container .h-\[288px\] {
        height: 220px !important;
    }
}

@media (max-width: 768px) {
    /* Hero section height */
    .h-\[275px\] {
        height: 200px !important;
    }
    
    /* Hero title */
    h1.text-\[45px\] {
        font-size: 32px !important;
    }
    
    /* Fleet description padding */
    .py-\[65px\] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Boat types padding */
    .pb-\[61px\] {
        padding-bottom: 40px !important;
    }
    
    .mb-\[61px\] {
        margin-bottom: 40px !important;
    }
    
    .mb-\[76px\] {
        margin-bottom: 50px !important;
    }
    
    /* Boat type headings */
    h2.text-\[24px\] {
        font-size: 20px !important;
    }
    
    /* Image gallery: stack vertically on tablet */
    #boats-gallery-container > div {
        flex-direction: column !important;
    }
    
    #boats-gallery-container .w-\[620px\] {
        width: 100% !important;
        height: 400px !important;
    }
    
    #boats-gallery-container .flex-1 {
        width: 100% !important;
    }
    
    #boats-gallery-container .w-\[300px\] {
        width: 100% !important;
    }
    
    #boats-gallery-container .h-\[596px\] {
        height: 400px !important;
    }
    
    #boats-gallery-container .h-\[288px\] {
        height: 250px !important;
    }
}

@media (max-width: 480px) {
    /* Hero section smaller */
    .h-\[275px\] {
        height: 150px !important;
    }
    
    /* Hero title smaller */
    h1.text-\[45px\] {
        font-size: 24px !important;
    }
    
    /* Fleet description */
    .py-\[65px\] {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .pb-\[61px\] {
        padding-bottom: 30px !important;
    }
    
    .mb-\[61px\] {
        margin-bottom: 30px !important;
    }
    
    .mb-\[76px\] {
        margin-bottom: 40px !important;
    }
    
    /* Text sizes */
    p.text-\[16px\] {
        font-size: 14px !important;
        line-height: 22px !important;
    }
    
    h2.text-\[24px\] {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    
    /* Image gallery: single column on mobile */
    #boats-gallery-container .grid-cols-2 {
        grid-template-columns: 1fr !important;
    }
    
    #boats-gallery-container .w-\[620px\] {
        height: 300px !important;
    }
    
    #boats-gallery-container .h-\[288px\] {
        height: 200px !important;
    }
    
    #boats-gallery-container .gap-\[20px\] {
        gap: 15px !important;
    }
}

/* Blog Details Page Responsive Styles */
@media (max-width: 1024px) {
    /* Article content - reduce right padding */
    .pr-\[100px\] {
        padding-right: 60px !important;
    }
    
    /* Article image smaller on tablets */
    .w-\[844px\].h-\[537px\] {
        width: 100% !important;
        height: 450px !important;
    }
}

@media (max-width: 768px) {
    /* Article content - remove right padding on mobile */
    .pr-\[100px\] {
        padding-right: 0 !important;
    }
    
    /* Article content padding */
    .py-\[75px\] {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    .py-\[97px\] {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    /* Date badge */
    .mb-\[57px\] {
        margin-bottom: 40px !important;
    }
    
    .-mt-\[103\.5px\] {
        margin-top: -75px !important;
    }
    
    /* Section spacing */
    .mb-\[64px\] {
        margin-bottom: 40px !important;
    }
    
    .mb-\[122px\] {
        margin-bottom: 60px !important;
    }
    
    .mb-\[101px\] {
        margin-bottom: 50px !important;
    }
    
    /* Article image */
    .w-\[844px\].h-\[537px\] {
        width: 100% !important;
        height: 350px !important;
    }
    
    /* Share button - hide on tablets */
    .fixed.right-\[calc\(\(100vw-1440px\)\/2\+90px\)\].top-\[510px\] {
        display: none !important;
    }
    
    /* Similar posts grid: 3 cols → 1 col */
    .grid.grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
    
    /* Blog card images */
    .h-\[395px\] {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    /* Content padding */
    .py-\[75px\] {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .py-\[97px\] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Date badge positioning */
    .-mt-\[103\.5px\] {
        margin-top: -60px !important;
    }
    
    /* Section spacing */
    .mb-\[64px\] {
        margin-bottom: 30px !important;
    }
    
    .mb-\[122px\] {
        margin-bottom: 40px !important;
    }
    
    .mb-\[101px\] {
        margin-bottom: 30px !important;
    }
    
    /* Date badge smaller */
    .w-\[207px\].h-\[57px\] {
        width: 160px !important;
        height: 50px !important;
    }
    
    /* Headings smaller */
    h2.text-\[24px\] {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    
    h2.text-\[45px\] {
        font-size: 28px !important;
        line-height: 34px !important;
    }
    
    /* Article image */
    .w-\[844px\].h-\[537px\] {
        width: 100% !important;
        height: 250px !important;
    }
    
    /* Blog card images */
    .h-\[395px\] {
        height: 250px !important;
    }
    
    /* Blog card titles */
    h3.text-\[24px\] {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    /* Similar posts gap */
    .gap-\[52px\] {
        gap: 30px !important;
    }
}

/* Destinations Page Responsive Styles */
@media (max-width: 1024px) {
    /* Destinations grid: 4 cols → 2 cols */
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Destination boxes */
    .w-\[310px\].h-\[350px\] {
        width: 100% !important;
        height: 320px !important;
    }
    
    .w-\[310px\] {
        width: 100% !important;
    }
    
    .w-\[274px\] {
        width: 100% !important;
        max-width: 274px !important;
    }
}

@media (max-width: 768px) {
    /* Section padding */
    .py-\[75px\] {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    /* Section margins */
    .mb-\[35px\] {
        margin-bottom: 25px !important;
    }
    
    .mb-\[107px\] {
        margin-bottom: 50px !important;
    }
    
    .mb-\[95px\] {
        margin-bottom: 50px !important;
    }
    
    /* Destinations grid: 2 cols → 1 col */
    .grid-cols-4 {
        grid-template-columns: 1fr !important;
    }
    
    /* Hide empty boxes on mobile */
    .bg-\[#f5f5f5\].w-\[310px\].h-\[350px\] {
        display: none !important;
    }
    
    /* Destination images */
    .w-\[310px\].h-\[350px\] {
        width: 100% !important;
        height: 300px !important;
    }
    
    /* Destination titles */
    h3.text-\[32px\] {
        font-size: 26px !important;
        line-height: 32px !important;
    }
    
    /* Section heading */
    h2.text-\[45px\] {
        font-size: 32px !important;
        line-height: 38px !important;
    }
    
    /* Pagination gap */
    .gap-\[31px\] {
        gap: 15px !important;
    }
    
    /* Pagination buttons */
    .w-\[35px\].h-\[35px\] {
        width: 30px !important;
        height: 30px !important;
    }
    
    .w-\[35px\].h-\[35px\] span {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    /* Section padding smaller */
    .py-\[75px\] {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* Section margins */
    .mb-\[107px\] {
        margin-bottom: 30px !important;
    }
    
    .mb-\[95px\] {
        margin-bottom: 30px !important;
    }
    
    /* Destination images */
    .w-\[310px\].h-\[350px\] {
        height: 250px !important;
    }
    
    /* Destination titles */
    h3.text-\[32px\] {
        font-size: 22px !important;
        line-height: 28px !important;
    }
    
    /* Section heading */
    h2.text-\[45px\] {
        font-size: 26px !important;
        line-height: 32px !important;
    }
    
    /* Description text */
    p.text-\[16px\] {
        font-size: 14px !important;
        line-height: 22px !important;
    }
    
    /* Pagination arrows smaller */
    .w-\[50px\].h-\[35px\] {
        width: 40px !important;
    }
    
    .w-\[50px\].h-\[35px\] svg {
        width: 35px !important;
    }
}

/* ////////////////////////////////////////////////////////// */

.foot-title {
    width: fit-content;
    border-bottom: 5px solid #D4AF37;
}
.numbers-wrap {
    margin-top: -100px;
}
.num-w {
    box-shadow: 0px 0px 20px 0px #00000040;

}
.num .absolute {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.desktop-nav {
    width: 100%;
    margin-right: 68px;
}
.mobile-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-social a svg path {
    fill: #d4af37; 
}
.margin-top {
    margin-top: 143px;
}

.line_title_wrap {
    overflow: hidden;
}
.line_title {
    position: relative;
}
.line_title::before {
    position: absolute;
    right: calc(100% + 10px);
    background-color: #D4AF37;
    display: block;
    content: "";
    top: 50%;
    width: 100vw;
    height: 1px;

}
.card-start-time {
    bottom: -5px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    background-color: #D4AF37;
    font-family: "Jost";
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #fff;
    width: max-content;
    max-width: 100%;
    padding: 8px 20px;
}
/* "+N" indikator — preostali polasci preko prva 3 (paritet sa detalj stranom).
   Bijela pilula sa gold tekstom (inverz badge-a) da kontrastira na zlatnoj. */
.card-start-time__more {
    display: inline-block;
    margin-left: 7px;
    padding: 1px 7px;
    border-radius: 999px;
    background: #fff;
    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    vertical-align: middle;
}
.card-btns a {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 47%;
    text-transform: uppercase;
}
.tour-card:hover h3 {
    text-decoration: underline;
    text-decoration-color: #D4AF37;
}
.tour-card .line-through {
    text-decoration-line: none;
    position: relative;
}
.tour-card .line-through::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    background-color: #FF0000;
}
.grey-bg {
    background-color: #F5F5F5;
}
.boat-wrap {
    padding-left: 10%;
}
.boat-content {
    position: relative;
    padding: 100px 0;
}
.boat-content-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}
/* Mobilna boat slika — prikazuje se umjesto .boat-content-img kad se layout
   stack-uje (≤1200px); u partialu je renderovana ODMAH ISPOD naslova. */
.boat-img-mobile { display: none; }
.boat-content-text {
    position: relative;
    z-index: 2;
    width: 55%;
    padding: 80px 40px;
}
.badge-wrap .badges {
    bottom: 0;
    left: 0;
    z-index: 2;
}
.review {
    display: grid !important;
    grid-template-columns: 140px 1fr;
    gap: 20px !important;
}
.review > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================================================
   Testimonial avatar — robust circular avatar guard (2026-06-01)
   ----------------------------------------------------------------------------
   Tailwind arbitrary `min-w-[100px]`, `min-h-[100px]`, `aspect-square` nisu
   uvijek u precompiled hawaii-tailwind.css output-u (JIT scope), pa avatar
   div u flex/grid parent-u zna da se skupi i postane elipsa na mobu. Ova
   eksplicitna pravila garantuju 1:1 ratio bez obzira da li su Tailwind
   utility klase generisane.
   ============================================================================ */
.testimonial-avatar {
    aspect-ratio: 1 / 1 !important;
    flex-shrink: 0 !important;
    overflow: hidden;
    border-radius: 50%;
}
.testimonial-avatar > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.destination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 350px;
    background-color: #F5F5F5;
}
.destination-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.review-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.review-top {
    position: relative;
    padding-left: 70px;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width: 1440px) {
.boat-wrap {
    padding-left: 90px;
}
}
@media screen and (max-width: 1200px) {
    .logo {
        top: 50% !important;
        transform: translateY(-50%);
    }
    nav {
        height: 90px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    nav.scrolled .w-\[112px\] {
        width: 60px !important;
        height: 60px !important;
    }
    .margin-top {
        margin-top: 100px;
    }
    .boat-wrap {
        padding-left: 40px;
        padding-right: 40px;
        min-height: unset !important;
    }
    /* 2026-06-02: Marinello "OUR BOAT" sekcija na stacku (≤1200px). Raniji bug
       (`:has(img){display:none}`) je skrivao cio sadržaj; nakon fix-a je slika
       išla na DNO (kraj). Klijent traži sliku ODMAH ISPOD naslova "Marinelo
       Eden…" → sakrivamo desktop kolonu (.boat-content-img) i prikazujemo inline
       .boat-img-mobile koja je u partialu renderovana odmah poslije naslova. */
    .boat-content {
        flex-direction: column !important;
        padding: 0 !important;
    }
    .boat-content-img {
        display: none !important;
    }
    .boat-content-text {
        width: 100% !important;
    }
    .boat-img-mobile {
        display: block;
        width: 100%;
        height: 280px;
        overflow: hidden;
        margin: 16px 0 6px;
    }
    .boat-img-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 1024px) {
    .margin-top {
        margin-top: 90px;
    }
    .boat-wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
    .boat-content {
        flex-direction: column;
        padding: 0;
    }
    .boat-content-img {
        position: static;
        width: 100%;
        height: 350px;
    }
    .boat-content-text {
        width: 100%;
    }
    .share {
        position: static;
    }
    .share .flex-col {
        flex-direction: row; 
    }
    .share .transform {
        transform: none; 
    }

}
@media (max-width: 768px) {
    .mobile-menu-button {
        right: 20px !important;
    }
    .margin-top {
        margin-top: 77px;
    }
    .testimonials-swiper .swiper-pagination-bullet {
        width: 40px;
        margin: 0 13px !important;
    }
    .boat-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
    .boat-content-text {
        padding: 50px 20px;
    }

    .lista-tura2 {
        row-gap: 30px !important;
    }
}
@media (max-width: 575px) {
    .mobile-book-links {
        gap: 0;
        justify-content: space-between;
    }
    .mobile-book-links a {
        font-size: 14px;
        padding: 10px;
        width: 49%;
        height: 50px;
    }
    .boat-content-img {
        height: 250px;
    }
    .review {
        grid-template-columns: 1fr;
        gap: 10px !important;
    }
    .destination {
        grid-template-columns: 1fr;
    }
    .destination-img {
        height: 250px;
    }
    .destination-info {
        padding: 40px 20px;
    }
}
@media (max-width: 480px) {
   .numbers-wrap {
    margin-top: 20px;
} 
    .mobile-menu-button {
        right: 10px !important;
    }
}


/* =============================================================================
   BLOG DETAIL LAYOUT — 2-column grid + vertical share aside (refactor 2026-06-01).
   ----------------------------------------------------------------------------
   Razlozi za novu strukturu:
     • Tailwind v4 ne kompajlira arbitrary `pr-[180px]` i `-mt-[103.5px]` u
       output CSS, pa je tekst išao full-width i ulazio pod absolute share
       kolonu, a datum badge padao previše ispod hero-a.
     • Stari floating share je bio `position: absolute` sa `right: max(...)`
       calculacijom — fragile na nestandardnim viewport-ima.
   ----------------------------------------------------------------------------
   Novi pristup:
     1. `.blog-article-grid` = flex 2 kolone (article body + share aside).
        Tekst i share su sibling-i, pa nikad ne overlap-uju.
     2. `.blog-date-badge` ima eksplicitan `margin-top: -103.5px` (paritet sa
        Hawaii template-om) — overlap-uje hero bottom edge.
     3. `.blog-share-aside` je vertical pill (52px wide) na desktopu sa
        rotated "SHARE:" labelom. Na <lg breakpoint-u postaje horizontal row
        ispod teksta — isti markup, samo orijentacija drugačija.
   ============================================================================= */
.blog-article-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.blog-article-body {
    flex: 1 1 0;
    min-width: 0; /* dozvoli da flex child shrink-ne ispod intrinsic width */
}

/* Date Badge — sjedi PREKO donje ivice hero sekcije.
   Tailwind klase `bg-[#222] flex items-center justify-center` pružaju vizualne
   stilove, ovdje samo width/height + negativna margina koje arbitrary klase ne
   isporučuju iz JIT-a. */
.blog-date-badge {
    width: 207px;
    height: 57px;
    margin-top: -132.5px;
    margin-bottom: 57px;
    /* osigurava da badge nikad ne padne ispod 100% širine roditelja na
       extremno uskim ekranima */
    max-width: 100%;
    /* Badge overlap-uje hero bottom (negative margin gore). Hero slika je
       `position:absolute` (positioned, z-auto) pa bi po paint-order pravilima
       crtala PREKO statičkog badge-a i sjekla mu gornju polovinu (datum se
       "kida" na granici hero/bijelo). Pozicioniramo badge sa eksplicitnim
       z-indexom da se crta IZNAD hero slike (ostaje ispod fixed nav-a). */
    position: relative;
    z-index: 10;
}

/* Share Aside — vertikalna kolona desno (desktop) / horizontalna ispod (≤lg) */
.blog-share-aside {
    flex: 0 0 52px;
    width: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-top: 8px;
    position: sticky;
    top: 160px;       /* fixed header je 143px high, +17px breathing room */
}

.blog-share-aside__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.35px;
    color: #222;
    white-space: nowrap;
    /* "SHARE:/PODIJELI:" rotiran 90° clockwise (rotate(90deg)) da se čita
       ODOZGO-NADOLE i prirodno teče u vertikalni stub ikona ispod. Ranije je
       bio rotate(-90deg) → tekst se čitao odozdo-nagore ("kontra okrenut"). */
    transform: rotate(90deg);
    transform-origin: center;
    margin: 38px 0;   /* prostor da rotiran tekst ne prekriva ikone */
}

.blog-share-aside__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #222;
    transition: opacity .2s, color .2s;
}
.blog-share-aside__icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.blog-share-aside__icon:hover {
    color: #d4af37;
    opacity: 1;
}

/* Tablet / mobile (<1024px) — share aside postaje horizontal row ispod teksta.
   Identičan markup kao desktop (klijent zahtjev: ikone iste na svim ekranima). */
@media (max-width: 1024px) {
    .blog-article-grid {
        flex-direction: column;
        gap: 40px;
    }
    .blog-share-aside {
        position: static;
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 18px;
        padding-top: 20px;
        border-top: 1px solid #e5e5e5;
    }
    .blog-share-aside__label {
        transform: none;
        margin: 0;
        font-size: 14px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .blog-share-aside__icon {
        width: 28px;
        height: 28px;
    }
    .blog-share-aside__icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile — date badge manji + manje overlap-uje (hero je 200px visok). */
@media (max-width: 768px) {
    .blog-date-badge {
        width: 160px;
        height: 44px;
        margin-top: -22px;
        margin-bottom: 28px;
    }
    .blog-date-badge p {
        font-size: 13px;
        line-height: 20px;
    }
}

/* =============================================================================
   BLOG PROSE — stilovi za blog post sadržaj (Sesija 7).
   Hawaii templejt (12-blog-detalji.html) koristi:
   - h2: 45px, Jost medium, tracking-1px, mb-26 + sekcija mb-64
   - p: 16px Montserrat, line-height 26px, tracking 0.35px
   - ul/ol: 16px, vertical spacing 15px između stavki
   ============================================================================= */
.hawaii-blog-prose h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #222;
    margin: 64px 0 26px;
}
.hawaii-blog-prose h2:first-child { margin-top: 0; }

.hawaii-blog-prose h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #222;
    margin: 40px 0 18px;
}

.hawaii-blog-prose p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.35px;
    color: #222;
    margin: 0 0 15px;
}

/* Lists — Tailwind v4 base reset uklanja default list-style/disc, pa moramo
   eksplicitno vratiti bullet/decimal markere unutar blog prose-a. Bez ovih
   pravila ul/ol stavke su izgledale kao paragrafi bez vizualnih markera. */
.hawaii-blog-prose ul,
.hawaii-blog-prose ol {
    margin: 0 0 24px 0;
    padding-left: 28px;
    list-style-position: outside;
}
.hawaii-blog-prose ul { list-style-type: disc; }
.hawaii-blog-prose ol { list-style-type: decimal; }
.hawaii-blog-prose ul ul { list-style-type: circle; }
.hawaii-blog-prose ol ol { list-style-type: lower-alpha; }
.hawaii-blog-prose li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.35px;
    color: #222;
    margin-bottom: 10px;
    display: list-item;  /* override Tailwind's reset on <li> */
}
.hawaii-blog-prose li::marker {
    color: #d4af37;       /* gold marker — paritet sa brand bojom */
    font-weight: 700;
}

.hawaii-blog-prose a {
    color: #d4af37;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: opacity .2s;
}
.hawaii-blog-prose a:hover { opacity: .8; }

.hawaii-blog-prose img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    display: block;
}

.hawaii-blog-prose blockquote {
    border-left: 4px solid #d4af37;
    padding: 12px 24px;
    margin: 24px 0;
    font-style: italic;
    color: #444;
    background: rgba(212, 175, 55, 0.06);
}

.hawaii-blog-prose strong { font-weight: 700; color: #222; }

@media (max-width: 768px) {
    .hawaii-blog-prose h2 { font-size: 30px; margin: 40px 0 18px; }
    .hawaii-blog-prose h3 { font-size: 22px; margin: 28px 0 14px; }
}

/* =============================================================================
   GALLERY GRID — asimetrican layout po Hawaii template-u (18-galerija.html).
   Layout (3-col, 4-row):
   ┌──────────────┬─────┬─────┐
   │              │ g2  │ g3  │  Row 1
   │  LARGE-1 g1  ├─────┼─────┤
   │              │ g4  │ g5  │  Row 2
   ├─────┬─────┬──┴─────┴─────┤
   │ g6  │ g7  │              │  Row 3
   ├─────┼─────┤  LARGE-2 g10 │
   │ g8  │ g9  │              │  Row 4
   └─────┴─────┴──────────────┘
   Velike slike spans 2 reda. Markup mora imati EKSPLICITNE 10 items u tačnom
   redoslijedu (gallery.php iterira $initialImages i flag-uje 0. i 9. kao large).
   ============================================================================= */
.hawaii-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.07fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: repeat(4, 288px);
    gap: 20px;
}

.hawaii-gallery-item {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.hawaii-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s, opacity .3s;
}
.hawaii-gallery-item:hover img {
    transform: scale(1.04);
    opacity: 0.92;
}

/* Eksplicitno pozicioniranje 10 slika po template patternu.
   :nth-child(1) i :nth-child(10) imaju klasu --large i sami zauzimaju 2 reda. */
.hawaii-gallery-item--large:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.hawaii-gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.hawaii-gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.hawaii-gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.hawaii-gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }
.hawaii-gallery-item:nth-child(6) { grid-column: 1; grid-row: 3; }
.hawaii-gallery-item:nth-child(7) { grid-column: 2; grid-row: 3; }
.hawaii-gallery-item:nth-child(8) { grid-column: 1; grid-row: 4; }
.hawaii-gallery-item:nth-child(9) { grid-column: 2; grid-row: 4; }
.hawaii-gallery-item--large:nth-child(10) {
    grid-column: 3;
    grid-row: 3 / span 2;
}

/* "MORE" sekcija — standardni 4-col grid bez large slot-ova ni explicit positions */
.hawaii-gallery-grid--more {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 240px;
}
.hawaii-gallery-grid--more .hawaii-gallery-item--large {
    grid-column: span 1;
    grid-row: span 1;
}
.hawaii-gallery-grid--more .hawaii-gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
}

/* Tablet — 2-col layout, prvi i posljednji (large) spans cijela širina */
@media (max-width: 1024px) {
    .hawaii-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        grid-auto-rows: 240px;
        gap: 16px;
    }
    .hawaii-gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
    .hawaii-gallery-item--large:nth-child(1),
    .hawaii-gallery-item--large:nth-child(10) {
        grid-column: span 2;
        grid-row: auto;
        height: 360px;
    }
    .hawaii-gallery-grid--more {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
}

/* Mobile — 1-col stack, large items su veći u visini */
@media (max-width: 640px) {
    .hawaii-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 10px;
    }
    .hawaii-gallery-item:nth-child(n) {
        grid-column: 1;
    }
    .hawaii-gallery-item--large:nth-child(1),
    .hawaii-gallery-item--large:nth-child(10) {
        grid-column: 1;
        height: 220px;
    }
    .hawaii-gallery-grid--more {
        grid-template-columns: 1fr;
    }
}

.hawaii-gallery-grid.hidden { display: none; }

/* =============================================================================
   GENERIC PAGE PROSE — TinyMCE content styling (Sesija 8.6)
   Hawaii templejt 21-template.html h2/h3/p/ul layout.
   ============================================================================= */
.hawaii-page-prose {
    color: #222;
}
.hawaii-page-prose h2 {
    color: #222;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: 0.75px;
    margin: 50px 0 35px;
}
.hawaii-page-prose h2:first-child { margin-top: 0; }
.hawaii-page-prose h3 {
    color: #222;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin: 40px 0 20px;
}
.hawaii-page-prose p {
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.35px;
    margin: 0 0 16px;
}
.hawaii-page-prose ul,
.hawaii-page-prose ol {
    margin: 0 0 24px;
    padding-left: 24px;
}
.hawaii-page-prose ul li,
.hawaii-page-prose ol li {
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.hawaii-page-prose ul li::marker,
.hawaii-page-prose ol li::marker {
    color: #d4af37;
}
.hawaii-page-prose strong { font-weight: 700; color: #222; }
.hawaii-page-prose a {
    color: #d4af37;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}
.hawaii-page-prose a:hover { opacity: .8; }
.hawaii-page-prose img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    display: block;
}
.hawaii-page-prose blockquote {
    border-left: 4px solid #d4af37;
    padding: 12px 24px;
    margin: 24px 0;
    font-style: italic;
    color: #444;
    background: rgba(212, 175, 55, 0.06);
}
@media (max-width: 768px) {
    .hawaii-page-prose h2 { font-size: 24px; line-height: 32px; margin: 36px 0 20px; }
    .hawaii-page-prose h3 { font-size: 20px; line-height: 28px; margin: 28px 0 16px; }
}

/* =============================================================================
   HAWAII LIGHTBOX — vanilla JS lightbox (zamjena za broken Fancybox UMD).
   Vidi: /theme/js/hawaii-lightbox.js
   ============================================================================= */
.hawaii-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.hawaii-lightbox.is-open {
    display: flex;
    opacity: 1;
}
.hawaii-lightbox__stage {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.hawaii-lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: #111;
}
.hawaii-lightbox__image.is-loaded {
    opacity: 1;
    transform: scale(1);
}
.hawaii-lightbox__caption {
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 22px;
    max-width: 700px;
    padding: 0 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.hawaii-lightbox__counter {
    position: absolute;
    top: -40px;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Close button (top-right) */
.hawaii-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
    z-index: 10;
}
.hawaii-lightbox__close:hover {
    background: #d4af37;
    border-color: #d4af37;
    transform: rotate(90deg);
}

/* Prev / Next arrows */
.hawaii-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
    z-index: 10;
}
.hawaii-lightbox__nav:hover {
    background: #d4af37;
    border-color: #d4af37;
}
.hawaii-lightbox__nav--prev { left: 24px; }
.hawaii-lightbox__nav--next { right: 24px; }
.hawaii-lightbox__nav:hover.hawaii-lightbox__nav--prev { transform: translateY(-50%) translateX(-4px); }
.hawaii-lightbox__nav:hover.hawaii-lightbox__nav--next { transform: translateY(-50%) translateX(4px); }

/* Body scroll lock kad je lightbox otvoren */
body.hawaii-lightbox-lock {
    overflow: hidden;
}

/* Cursor zoom-in za trigger anchor-e (Hawaii dizajn signal da slika može biti klikuta) */
a[data-lightbox] {
    cursor: zoom-in;
    display: block;
}
a[data-lightbox] img {
    pointer-events: none; /* Klik se uvek delegira na <a> (a ne <img> child) */
}

@media (max-width: 640px) {
    .hawaii-lightbox { padding: 50px 16px; }
    .hawaii-lightbox__nav { width: 44px; height: 44px; }
    .hawaii-lightbox__nav--prev { left: 8px; }
    .hawaii-lightbox__nav--next { right: 8px; }
    .hawaii-lightbox__close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 28px; }
    .hawaii-lightbox__image { max-height: calc(100vh - 140px); }
    .hawaii-lightbox__counter { top: -28px; font-size: 12px; }
}

/* =============================================================================
   NO-ANIMATE — session-based skip za scroll-reveal animacije.
   Primjenjuje se na sve klikove unutar session-a (osim prve posete tab-a),
   tako da menu nav ne pravi fade-in efekat na svaku novu stranicu.
   ============================================================================= */
.scroll-reveal.no-animate,
.scroll-reveal-left.no-animate,
.scroll-reveal-right.no-animate,
.scroll-reveal-scale.no-animate {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* =============================================================================
   ABOUT-TEASER LEFT (Captain Aki) — mobilni redosled + tipografija (2026-06-02)
   ---------------------------------------------------------------------------
   Klijent: na telefonu je glavni naslov ("Moje ime je Aki…", rich-text .prose
   h2) preglomazan (globalni `h2{font-size:28px!important}` ≤1024px), a slika
   stoji u zasebnoj grid koloni pa na stack-u djeluje odvojeno / "na kraju".
   Rješenje: (1) smanjujemo .prose h2 u ovoj sekciji; (2) prikazujemo sliku
   ODMAH ISPOD naslova — inline kopija (.about-left-img-mobile) je u partialu
   ubačena u $aboutLeftProse poslije prvog </h2>. Desktop kolona slike
   (.about-left-img-desktop) se na telefonu skriva. Isti src → jedan fetch.
   ============================================================================= */
.about-left-img-mobile { display: none; }
@media (max-width: 768px) {
    .home-about-teaser--left .about-left-img-desktop { display: none; }
    .home-about-teaser--left .about-left-img-mobile {
        display: block;
        width: 100%;
        height: 240px;
        overflow: hidden;
        margin: 14px 0 22px;
    }
    .home-about-teaser--left .about-left-img-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    /* Naslov "Moje ime je Aki" — viša specifičnost + !important da nadjača
       globalni `h2{font-size:28px!important}` (≤1024px) i bude kompaktan. */
    .home-about-teaser--left .prose h2 {
        font-size: 22px !important;
        line-height: 29px !important;
        margin-bottom: 12px !important;
    }
}

/* =============================================================================
   CONTENT WIDTH — paritet sa grebenboattours.com (2026-06-02)
   ---------------------------------------------------------------------------
   Live sajt (grebenboattours.com) koristi `.container { max-width: 1200px;
   padding: 0 2rem }` (--bc-container-base = 1200px, --bc-space-6 = 2rem = 32px)
   → korisna širina sadržaja ≈ 1136px. Hawaii templejt je bio 1440px container
   sa 90px gutterom (sadržaj ≈ 1260px), pa je djelovao širi. Ovdje globalno
   svodimo SVE `max-w-[1440px]` kontejnere (header, sadržaj, footer, heroji) na
   1200px + 32px gutter da širina content prostora bude identična live sajtu.

   Selektori `[class*="max-w-[1440px]"]` / `[class*="px-[90px]"]` (0,1,0) sa
   izvornim redoslijedom POSLIJE hawaii-tailwind.css pobjeđuju bazne utility
   klase. Na ≤1200px hawaii.css već forsira `.px-[90px]{40px !important}` (uži
   ekrani), pa ovaj 32px efektivno vrijedi na desktopu (>1200px) — tačno tamo
   gdje se i pojavljuje 1200px centriran container.
   ============================================================================= */
[class*="max-w-[1440px]"] {
    max-width: 1200px;
}
[class*="px-[90px]"] {
    padding-left: 32px;
    padding-right: 32px;
}

/* Nav (desktop, >1200px) — apsolutno pozicionirani logo i desni stub (kontakt +
   meni) bili su poravnati na 90px ivice (= stari gutter). Pošto je container
   sada 1200px sa 32px gutterom, poravnavamo ih na 32px ivice da header prati
   istu širinu kao sadržaj ispod. Ispod 1200px je hamburger (desni stub
   `display:none`), pa scope-ujemo na desktop nav. Meni (8 kratkih stavki ≈
   530px) komotno staje u preostalih ~740px. */
@media (min-width: 1201px) {
    nav a[class*="left-[90px]"] {
        left: 32px;
    }
    nav [class*="left-[358px]"] {
        left: 300px;
    }
    nav [class*="right-[90px]"] {
        right: 32px;
    }
}
.destination-title  {
    /* border-bottom: 2px solid #D4AF37; */
    text-decoration: underline;
    text-decoration-color: #D4AF37;
}
.prose p + p {
    margin-top: 20px; 
}
@media screen and (max-width: 1199px) {
    .desktop-nav2 {
        display: none !important;
    }
}