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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a2e;
            background-color: #ffffff;
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        ul, ol {
            list-style: none;
        }

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

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-up:nth-child(2) { transition-delay: 0.1s; }
        .fade-in-up:nth-child(3) { transition-delay: 0.2s; }
        .fade-in-up:nth-child(4) { transition-delay: 0.3s; }
        .fade-in-up:nth-child(5) { transition-delay: 0.4s; }
        .fade-in-up:nth-child(6) { transition-delay: 0.5s; }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .navbar.scrolled {
            background-color: #ffffff;
            padding: 12px 0;
            box-shadow: 0 2px 40px rgba(10, 22, 40, 0.08);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
            transition: color 0.4s ease;
        }

        .navbar.scrolled .nav-logo {
            color: #0a1628;
        }

        .nav-logo span {
            color: #00b4d8;
        }

        /* Mobile Menu Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .nav-toggle span {
            background-color: #0a1628;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== MEGA MENU ===== */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background-color: #00b4d8;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: #ffffff;
        }

        .navbar.scrolled .nav-link {
            color: #1a1a2e;
        }

        .navbar.scrolled .nav-link:hover {
            color: #00b4d8;
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            width: 520px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 16px 48px rgba(10, 22, 40, 0.14), 0 0 0 1px rgba(10, 22, 40, 0.06);
            padding: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
            z-index: 100;
            overflow: hidden;
        }

        .mega-menu::before {
            content: '';
            display: block;
            height: 2px;
            background: linear-gradient(90deg, #00b4d8, #d4a574);
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .mega-menu-inner {
            display: grid;
            grid-template-columns: 1fr 1fr 150px;
            gap: 0;
            align-items: stretch;
        }

        .mega-menu-col {
            padding: 16px 20px;
        }

        .mega-menu-col:first-child {
            border-right: 1px solid #f0ece6;
        }

        .mega-menu-col-title {
            font-size: 0.68rem;
            font-weight: 700;
            color: #0a1628;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .mega-menu-list li {
            margin-bottom: 2px;
        }

        .mega-menu-list a {
            font-size: 0.82rem;
            color: #5a5a7a;
            padding: 5px 8px;
            margin: 0 -8px;
            display: block;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .mega-menu-list a:hover {
            color: #0a1628;
            background-color: #f8f6f3;
        }

        .mega-menu-thumb {
            position: relative;
            overflow: hidden;
        }

        .mega-menu-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mega-menu-thumb:hover img {
            transform: scale(1.05);
        }

        .mega-menu-thumb-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px 12px;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 100%);
        }

        .mega-menu-thumb-label {
            font-size: 0.68rem;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.02em;
        }

        .mega-menu-footer {
            grid-column: 1 / -1;
            padding: 8px 20px;
            border-top: 1px solid #f0ece6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mega-menu-footer a {
            font-size: 0.72rem;
            font-weight: 600;
            color: #00b4d8;
            letter-spacing: 0.03em;
            transition: color 0.2s ease;
        }

        .mega-menu-footer a:hover {
            color: #0096c7;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            
            background-size: cover;
            background-position: center 30%;
            will-change: transform;
            transform: translateZ(0);
            transition: transform 0.1s linear;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(10, 22, 40, 0.3) 0%,
                rgba(10, 22, 40, 0.55) 40%,
                rgba(10, 22, 40, 0.8) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 24px;
            max-width: 800px;
        }

        .hero-subtitle-top {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: #00b4d8;
            margin-bottom: 24px;
            opacity: 0;
            animation: heroFadeIn 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            opacity: 0;
            animation: heroFadeIn 1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1rem, 2.5vw, 1.35rem);
            font-weight: 400;
            font-style: italic;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 48px;
            opacity: 0;
            animation: heroFadeIn 1s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 48px;
            background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            opacity: 0;
            animation: heroFadeIn 1s 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(0, 180, 216, 0.35);
        }

        .hero-cta svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .hero-cta:hover svg {
            transform: translateX(4px);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            animation: scrollBounce 2s ease-in-out infinite;
        }

        .hero-scroll-indicator svg {
            width: 20px;
            height: 20px;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        /* ===== SECTION HEADERS ===== */
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #00b4d8;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.85rem);
            font-weight: 600;
            color: #0a1628;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .section-divider {
            width: 48px;
            height: 2px;
            background: linear-gradient(90deg, #00b4d8, #d4a574);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* ===== NEWS TICKER BAR ===== */
        .news-ticker {
            background-color: #0a1628;
            height: 48px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
        }

        .news-ticker-label {
            flex-shrink: 0;
            background-color: #00b4d8;
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 2;
        }

        .news-ticker-track {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .news-ticker-scroll {
            display: flex;
            align-items: center;
            white-space: nowrap;
            animation: tickerScroll 40s linear infinite;
        }

        .news-ticker-scroll:hover {
            animation-play-state: paused;
        }

        .news-ticker-item {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0 24px;
            display: flex;
            align-items: center;
            gap: 24px;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .news-ticker-item:hover {
            color: #00b4d8;
        }

        .news-ticker-item::after {
            content: '';
            width: 4px;
            height: 4px;
            background-color: #00b4d8;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .news-ticker-item:last-child::after {
            display: none;
        }

        .news-ticker-scroll-inner {
            display: flex;
            align-items: center;
        }

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

        /* ===== FEATURED DESTINATIONS ===== */
        .destinations {
            padding: 100px 0;
            background-color: #ffffff;
        }

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

        .destination-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background-color: #ffffff;
            box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
        }

        .destination-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
        }

        .destination-card-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .destination-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .destination-card:hover .destination-card-image img {
            transform: scale(1.08);
        }

        .destination-card-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.5), transparent);
        }

        .destination-card-content {
            padding: 28px 24px 24px;
        }

        .destination-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #0a1628;
            margin-bottom: 10px;
        }

        .destination-card-desc {
            font-size: 0.9rem;
            color: #5a5a7a;
            line-height: 1.65;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .destination-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #00b4d8;
            transition: all 0.3s ease;
        }

        .destination-card-link svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .destination-card-link:hover {
            color: #0096c7;
        }

        .destination-card-link:hover svg {
            transform: translateX(4px);
        }

        /* ===== EDITOR'S PICK / MAGAZINE SECTION ===== */
        .editors-pick {
            padding: 100px 0;
            background-color: #f5f0eb;
        }

        .editors-pick-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            min-height: 520px;
        }

        .editors-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .editors-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(10, 22, 40, 0.12);
        }

        .editors-card-feature {
            grid-row: 1 / 3;
        }

        .editors-card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .editors-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .editors-card:hover .editors-card-image img {
            transform: scale(1.04);
        }

        .editors-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.2) 50%, rgba(10, 22, 40, 0.05) 100%);
            z-index: 1;
        }

        .editors-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
            z-index: 2;
        }

        .editors-card-category {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #00b4d8;
            border-left: 3px solid #00b4d8;
            padding-left: 10px;
            margin-bottom: 10px;
        }

        .editors-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .editors-card-feature .editors-card-title {
            font-size: 1.55rem;
            margin-bottom: 12px;
        }

        .editors-card-excerpt {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .editors-card-date {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 10px;
            letter-spacing: 0.02em;
        }

        /* ===== WHY KEFALONYA ===== */
        .why-kefalonya {
            padding: 100px 0;
            background-color: #f5f0eb;
        }

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

        .feature-box {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 16px rgba(10, 22, 40, 0.04);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .feature-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
        }

        .feature-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .feature-box:hover .feature-image img {
            transform: scale(1.08);
        }

        .feature-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.3), transparent);
        }

        .feature-content {
            padding: 24px 22px 28px;
            text-align: center;
        }

        .feature-box-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: #0a1628;
            margin-bottom: 10px;
        }

        .feature-box-desc {
            font-size: 0.875rem;
            color: #5a5a7a;
            line-height: 1.65;
        }

        /* ===== SEASON GUIDE ===== */
        .season-guide {
            padding: 100px 0;
            background-color: #ffffff;
        }

        .season-guide-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 400;
            font-style: italic;
            color: #5a5a7a;
            margin-top: 12px;
        }

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

        .season-card {
            padding: 28px 18px 24px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
        }

        .season-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 36px rgba(10, 22, 40, 0.1);
        }

        .season-card:hover .season-icon svg {
            color: #00b4d8;
        }

        .season-card--winter {
            background-color: #eef4fb;
        }

        .season-card--spring {
            background-color: #edf7ed;
        }

        .season-card--early-summer {
            background-color: #fdf8ee;
        }

        .season-card--summer {
            background-color: #f5f0eb;
        }

        .season-card--autumn {
            background-color: #fef3e6;
        }

        .season-card--late-winter {
            background-color: #e8eef6;
        }

        .season-months {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #0a1628;
            margin-bottom: 6px;
        }

        .season-label {
            font-family: 'Playfair Display', serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #0a1628;
            margin-bottom: 14px;
        }

        .season-icon {
            margin-bottom: 14px;
            color: #5a5a7a;
            transition: color 0.3s ease;
        }

        .season-icon svg {
            width: 28px;
            height: 28px;
            margin: 0 auto;
            transition: color 0.3s ease;
        }

        .season-desc {
            font-size: 0.78rem;
            color: #5a5a7a;
            line-height: 1.55;
        }

        /* ===== PLAN YOUR TRIP ===== */
        .plan-trip {
            padding: 100px 0;
            background-color: #ffffff;
        }

        .plan-trip-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .plan-trip-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 520px;
        }

        .plan-trip-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .plan-trip-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, transparent 60%);
            z-index: 1;
            pointer-events: none;
        }

        .plan-trip-content {
            padding: 16px 0;
        }

        .plan-trip-content .section-header {
            text-align: left;
            margin-bottom: 28px;
        }

        .plan-trip-content .section-label {
            margin-bottom: 12px;
        }

        .plan-trip-text {
            font-size: 0.95rem;
            color: #5a5a7a;
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .plan-trip-text p {
            margin-bottom: 16px;
        }

        .plan-trip-text p:last-child {
            margin-bottom: 0;
        }

        .stats-row {
            display: flex;
            gap: 20px;
            margin-bottom: 36px;
        }

        .stat-card {
            flex: 1;
            padding: 20px 16px;
            background: linear-gradient(135deg, #f5f0eb 0%, #ebe4dc 100%);
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-3px);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #00b4d8;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: #5a5a7a;
            margin-top: 4px;
            letter-spacing: 0.02em;
        }

        .plan-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background-color: #0a1628;
            color: #ffffff;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            border: 2px solid #0a1628;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .plan-cta:hover {
            background-color: transparent;
            color: #0a1628;
        }

        .plan-cta svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .plan-cta:hover svg {
            transform: translateX(4px);
        }

        /* ===== PHOTO GALLERY STRIP ===== */
        .photo-gallery {
            padding: 100px 0;
            background-color: #f5f0eb;
        }

        .photo-gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-template-rows: 1fr 1fr;
            gap: 12px;
            height: 400px;
        }

        .photo-gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
        }

        .photo-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .photo-gallery-item:hover img {
            transform: scale(1.03);
            filter: grayscale(0%);
        }

        .photo-gallery-item--large {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }

        .photo-gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 16px 14px;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 100%);
            z-index: 1;
        }

        .photo-gallery-caption span {
            font-size: 0.75rem;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: 0.04em;
        }

        /* ===== LATEST ARTICLES ===== */
        .latest-articles {
            padding: 100px 0;
            background-color: #ffffff;
        }

        .latest-articles-subtitle {
            font-size: 0.95rem;
            color: #5a5a7a;
            margin-top: 8px;
        }

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

        .article-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(10, 22, 40, 0.05);
            border-top: 3px solid #d4a574;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
        }

        .article-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(10, 22, 40, 0.1);
        }

        .article-card-image {
            height: 220px;
            overflow: hidden;
        }

        .article-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

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

        .article-card-body {
            padding: 28px 28px 32px;
            display: flex;
            flex-direction: column;
        }

        .article-card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            padding-bottom: 14px;
            border-bottom: 1px solid #f0ece6;
        }

        .article-card-date {
            font-size: 0.75rem;
            font-weight: 600;
            color: #0a1628;
            letter-spacing: 0.02em;
        }

        .article-card-cat {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #00b4d8;
            background-color: rgba(0, 180, 216, 0.08);
            padding: 3px 10px;
            border-radius: 5px;
        }

        .article-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #0a1628;
            line-height: 1.4;
            margin-bottom: 14px;
            transition: color 0.3s ease;
        }

        .article-card:hover .article-card-title {
            color: #00b4d8;
        }

        .article-card-excerpt {
            font-size: 0.9rem;
            color: #5a5a7a;
            line-height: 1.7;
            margin-top: auto;
            margin-bottom: 0;
        }

        .article-card-link {
            font-size: 0.82rem;
            font-weight: 500;
            color: #00b4d8;
            transition: color 0.3s ease;
            display: inline;
            white-space: nowrap;
        }

        .article-card-link svg {
            width: 13px;
            height: 13px;
            vertical-align: middle;
            margin-left: 3px;
            transition: transform 0.3s ease;
        }

        .article-card-link:hover {
            color: #0096c7;
        }

        .article-card-link:hover svg {
            transform: translateX(3px);
        }

        .articles-cta-wrap {
            text-align: center;
            margin-top: 48px;
        }

        .articles-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            background-color: transparent;
            color: #0a1628;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: 2px solid #0a1628;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .articles-cta:hover {
            background-color: #0a1628;
            color: #ffffff;
        }

        .articles-cta svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .articles-cta:hover svg {
            transform: translateX(4px);
        }

        /* ===== NEWSLETTER STRIP ===== */
        .newsletter-strip {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
            position: relative;
            overflow: hidden;
        }

        .newsletter-strip::before {
            content: '\201C';
            position: absolute;
            top: -40px;
            left: 60px;
            font-family: 'Playfair Display', serif;
            font-size: 20rem;
            color: #00b4d8;
            opacity: 0.06;
            line-height: 1;
            pointer-events: none;
        }

        .newsletter-inner {
            position: relative;
            z-index: 2;
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #00b4d8;
            margin-bottom: 16px;
        }

        .newsletter-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 14px;
            line-height: 1.25;
        }

        .newsletter-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            color: #1a1a2e;
            background-color: #ffffff;
            outline: none;
            transition: box-shadow 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: #999;
        }

        .newsletter-input:focus {
            box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
        }

        .newsletter-btn {
            padding: 14px 28px;
            background-color: #00b4d8;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background-color: #0096c7;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
        }

        /* ===== WEATHER BAR ===== */
        .weather-bar {
            padding: 24px 0;
            background: linear-gradient(135deg, #0a1628 0%, #162240 100%);
        }

        .weather-bar-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .weather-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.875rem;
            font-weight: 400;
        }

        .weather-item svg {
            width: 18px;
            height: 18px;
            color: #00b4d8;
            flex-shrink: 0;
        }

        .weather-item strong {
            color: #ffffff;
            font-weight: 600;
        }

        .weather-separator {
            width: 1px;
            height: 20px;
            background-color: rgba(255, 255, 255, 0.15);
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 80px 0 0;
            background-color: #070e1a;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 60px;
        }

        .footer-brand-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .footer-brand-logo span {
            color: #00b4d8;
        }

        .footer-brand-desc {
            font-size: 0.875rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 20px;
        }

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

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.45);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background-color: #00b4d8;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .footer-social a svg {
            width: 16px;
            height: 16px;
        }

        .footer-column-title {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.45);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #00b4d8;
            padding-left: 4px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-contact-item svg {
            width: 16px;
            height: 16px;
            color: #00b4d8;
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 24px 0;
        }

        .footer-bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom-copy {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-bottom-links a {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.35);
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #00b4d8;
        }

        .footer-bottom-links-sep {
            color: rgba(255, 255, 255, 0.15);
            font-size: 0.7rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .season-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .photo-gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .photo-gallery-item--large {
                grid-column: 1 / 3;
                grid-row: 1 / 3;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: #0a1628;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 28px;
                transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu .nav-link {
                color: rgba(255, 255, 255, 0.85) !important;
                font-size: 1rem;
            }

            .nav-menu .nav-link:hover {
                color: #00b4d8 !important;
            }

            .mega-menu {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .destinations-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                max-width: 480px;
                margin: 0 auto;
            }

            .features-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .plan-trip-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .plan-trip-image {
                height: 320px;
            }

            .plan-trip-content .section-header {
                text-align: center;
            }

            .stats-row {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
                text-align: center;
            }

            .footer-contact-item {
                justify-content: center;
            }

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

            .hero {
                min-height: 600px;
            }

            .weather-bar-inner {
                flex-direction: column;
                gap: 12px;
            }

            .weather-separator {
                display: none;
            }

            /* Editor's pick responsive */
            .editors-pick-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                min-height: auto;
            }

            .editors-card-feature {
                grid-row: auto;
                min-height: 320px;
            }

            .editors-card:not(.editors-card-feature) {
                min-height: 220px;
            }

            .editors-card-feature .editors-card-title {
                font-size: 1.3rem;
            }

            /* Season guide responsive */
            .season-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            /* Photo gallery responsive */
            .photo-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
                height: auto;
            }

            .photo-gallery-item--large {
                grid-column: 1 / -1;
                grid-row: auto;
                height: 240px;
            }

            .photo-gallery-item:not(.photo-gallery-item--large) {
                height: 180px;
            }

            /* Latest articles responsive */
            .articles-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin: 0 auto;
            }

            /* Newsletter responsive */
            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-btn {
                width: 100%;
            }

            /* Footer bottom responsive */
            .footer-bottom-inner {
                flex-direction: column;
                text-align: center;
            }

            /* News ticker responsive */
            .news-ticker-label {
                font-size: 0.6rem;
                padding: 0 14px;
            }

            .news-ticker-item {
                font-size: 0.7rem;
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .hero-cta {
                padding: 16px 36px;
            }

            .plan-cta {
                width: 100%;
                justify-content: center;
            }

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

            .photo-gallery-grid {
                grid-template-columns: 1fr;
            }

            .photo-gallery-item--large {
                height: 200px;
            }

            .photo-gallery-item:not(.photo-gallery-item--large) {
                height: 160px;
            }
        }