/*
Theme Name: Malta Fun Trains
Theme URI: https://maltafuntrains.com
Author: Malta Fun Trains
Author URI: https://maltafuntrains.com
Description: A stunning custom theme for Malta Fun Trains - Sightseeing train tours in Valletta and Rabat, Malta.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mft-theme
Tags: tourism, tours, malta, custom-theme
*/

/* ============================================
   CSS VARIABLES & RESET
   2026 Premium UX Design System
   ============================================ */
:root {
    /* Primary Palette - Vibrant & Modern */
    --mft-red: #FF385C;
    --mft-red-dark: #D70466;
    --mft-red-light: #FFEBEF;
    --mft-red-gradient: linear-gradient(135deg, #FF385C 0%, #BD1E59 100%);
    --mft-red-glow: 0 0 40px rgba(255, 56, 92, 0.3);
    
    /* Accent Colors */
    --mft-gold: #FFB800;
    --mft-gold-dark: #E5A500;
    --mft-gold-light: #FFF8E1;
    --mft-gold-gradient: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
    
    /* Cool Tones */
    --mft-teal: #00A699;
    --mft-teal-dark: #008F82;
    --mft-teal-light: #E0F7F5;
    --mft-teal-gradient: linear-gradient(135deg, #00A699 0%, #00857A 100%);
    
    /* Neutrals - Refined */
    --mft-navy: #0F172A;
    --mft-navy-light: #1E293B;
    --mft-dark: #18181B;
    --mft-white: #FFFFFF;
    --mft-cream: #FAFAF9;
    --mft-gray-900: #18181B;
    --mft-gray-800: #27272A;
    --mft-gray-700: #3F3F46;
    --mft-gray-600: #52525B;
    --mft-gray-500: #71717A;
    --mft-gray-400: #A1A1AA;
    --mft-gray-300: #D4D4D8;
    --mft-gray-200: #E4E4E7;
    --mft-gray-100: #F4F4F5;
    --mft-gray-50: #FAFAFA;

    /* Typography - Modern Sans */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Poppins', sans-serif;

    /* Spacing - Generous */
    --section-padding: 140px 0;
    --container-width: 1320px;
    --container-narrow: 960px;

    /* 2026 Shadows - Soft & Layered */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 24px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.06), 0 20px 48px -4px rgba(0,0,0,0.06);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.12);
    --shadow-2xl: 0 32px 64px -16px rgba(0,0,0,0.14);
    --shadow-glow: 0 0 60px rgba(255, 56, 92, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.04);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);

    /* Border Radius - Smooth */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;

    /* Transitions - Buttery Smooth */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--mft-gray-700);
    background: var(--mft-white);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

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

a {
    color: var(--mft-red);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--mft-red-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--mft-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.625rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--mft-gray-600);
    font-size: 17px;
    line-height: 1.75;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-light {
    background: var(--mft-gray-50);
}

.section-dark {
    background: var(--mft-navy);
    color: var(--mft-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--mft-white);
}

.section-dark p {
    color: var(--mft-blue-light);
}

.section-cream {
    background: var(--mft-cream);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mft-red);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-header .label::before,
.section-header .label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--mft-red);
}

.section-header .label::before { left: -20px; }
.section-header .label::after { right: -20px; }

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--mft-gray-500);
}

/* ============================================
   BUTTONS - Premium Airbnb Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--mft-red-gradient);
    color: var(--mft-white);
    box-shadow: 0 4px 14px rgba(255, 56, 92, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 56, 92, 0.5);
    color: var(--mft-white);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: var(--mft-white);
    color: var(--mft-dark);
    border: 1px solid var(--mft-gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--mft-gray-50);
    border-color: var(--mft-gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--mft-dark);
    border: 2px solid var(--mft-dark);
}

.btn-outline:hover {
    background: var(--mft-dark);
    color: var(--mft-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--mft-white);
    border: 2px solid var(--mft-white);
}

.btn-outline-white:hover {
    background: var(--mft-white);
    color: var(--mft-dark);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--mft-gold) 0%, var(--mft-gold-dark) 100%);
    color: var(--mft-dark);
    box-shadow: 0 4px 14px rgba(255, 180, 0, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 180, 0, 0.5);
    color: var(--mft-dark);
}

.btn-teal {
    background: linear-gradient(135deg, var(--mft-teal) 0%, var(--mft-blue) 100%);
    color: var(--mft-white);
    box-shadow: 0 4px 14px rgba(0, 166, 153, 0.4);
}

.btn-teal:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 166, 153, 0.5);
    color: var(--mft-white);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

/* ============================================
   HEADER & NAVIGATION - 2026 Glassmorphism
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
    padding: 16px 0;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    opacity: 1;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.site-header.scrolled::before {
    opacity: 0;
}

.site-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur) saturate(180%);
    -webkit-backdrop-filter: var(--glass-blur) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05), var(--shadow-lg);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.site-logo .logo-icon {
    font-size: 32px;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--mft-white);
    transition: color var(--transition-normal);
    line-height: 1.1;
}

.site-logo .logo-text span {
    display: block;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scrolled .site-logo .logo-text {
    color: var(--mft-navy);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    color: var(--mft-white);
    background: rgba(255, 255, 255, 0.15);
}

.scrolled .nav-menu > li > a {
    color: var(--mft-gray-700);
}

.scrolled .nav-menu > li > a:hover,
.scrolled .nav-menu > li.current-menu-item > a {
    color: var(--mft-red);
    background: rgba(230, 57, 70, 0.08);
}

/* Dropdown */
.nav-menu > li > .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--mft-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    border: 1px solid var(--mft-gray-100);
}

.nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
    color: var(--mft-gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.sub-menu li a:hover {
    color: var(--mft-red);
    background: rgba(230, 57, 70, 0.06);
    padding-left: 22px;
}

/* Dropdown Arrow */
.nav-menu > li.menu-item-has-children > a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform var(--transition-fast);
}

.nav-menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
}

/* Header CTA */
.header-cta .btn {
    padding: 10px 24px;
    font-size: 13px;
}

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

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--mft-white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.scrolled .mobile-toggle span {
    background: var(--mft-navy);
}

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

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

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

/* ============================================
   HERO SECTION - 2026 Immersive Design
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(15, 23, 42, 0.6) 40%,
        rgba(15, 23, 42, 0.3) 70%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 100px;
}

.hero-content .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mft-gold);
    margin-bottom: 24px;
}

.hero-content .hero-label .line {
    width: 40px;
    height: 2px;
    background: var(--mft-gold);
}

.hero-content h1 {
    color: var(--mft-white);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-content h1 span {
    color: var(--mft-gold);
}

.hero-content .hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--mft-white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .text {
    font-family: var(--font-accent);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.hero-dot.active {
    background: var(--mft-gold);
    border-color: var(--mft-gold);
    transform: scale(1.2);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.85) 0%,
        rgba(29, 53, 87, 0.7) 100%
    );
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    font-family: var(--font-accent);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.page-hero .breadcrumb a:hover {
    color: var(--mft-gold);
}

.page-hero h1 {
    color: var(--mft-white);
    margin-bottom: 16px;
}

.page-hero .page-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image .accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--mft-red);
    color: var(--mft-white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image .accent-box .number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-image .accent-box .text {
    font-family: var(--font-accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content .label {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mft-red);
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 18px;
    color: var(--mft-gray-700);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--mft-gray-50);
    border-radius: var(--radius-sm);
}

.about-feature .icon {
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature .text {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
    color: var(--mft-navy);
}

/* ============================================
   TOUR CARDS - 2026 Bento Style
   ============================================ */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.tour-card {
    background: var(--mft-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--mft-gray-100);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.tour-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.tour-card:hover .tour-card-image::after {
    opacity: 1;
}

.tour-card-image .wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 18px;
    color: var(--mft-gray-700);
    z-index: 2;
}

.tour-card-image .wishlist-btn:hover {
    transform: scale(1.1);
    background: var(--mft-white);
}

.tour-card-image .wishlist-btn.active {
    color: var(--mft-red);
}

.tour-card-image .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--mft-white);
    color: var(--mft-dark);
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.tour-card-image .badge.featured {
    background: var(--mft-red);
    color: var(--mft-white);
}

.tour-card-image .badge.bestseller {
    background: var(--mft-gold);
    color: var(--mft-dark);
}

/* Image Carousel Dots */
.tour-card-image .carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.tour-card-image .carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: all var(--transition-fast);
}

.tour-card-image .carousel-dot.active {
    background: var(--mft-white);
    width: 8px;
    height: 8px;
}

.tour-card-body {
    padding: 20px 24px 24px;
}

.tour-card-body .tour-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.tour-card-body h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.tour-card-body h3 a {
    color: var(--mft-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.tour-card-body h3 a:hover {
    color: var(--mft-red);
}

.tour-card-body .rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    background: var(--mft-gray-50);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.tour-card-body .rating .star {
    color: var(--mft-gold);
}

.tour-card-body .rating .count {
    color: var(--mft-gray-500);
    font-weight: 400;
}

.tour-card-body .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--mft-gray-500);
    margin-bottom: 12px;
}

.tour-card-body .excerpt {
    font-size: 15px;
    color: var(--mft-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-body .tour-details {
    font-size: 14px;
    color: var(--mft-gray-500);
    margin-bottom: 12px;
}

.tour-card-meta {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--mft-gray-100);
    flex-wrap: wrap;
}

.tour-card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--mft-gray-600);
    font-weight: 500;
}

.tour-card-meta .meta-item .icon {
    font-size: 16px;
}

.tour-card-body .price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 16px;
}

.tour-card-body .price-row .price {
    font-weight: 700;
    font-size: 20px;
    color: var(--mft-dark);
}

.tour-card-body .price-row .per {
    font-size: 14px;
    color: var(--mft-gray-500);
}

.tour-card-body .price-row .original-price {
    font-size: 14px;
    color: var(--mft-gray-400);
    text-decoration: line-through;
}

/* Tour Card Hover Overlay */
.tour-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    transition: background var(--transition-fast);
}

/* Featured Tour Card - Larger */
.tour-card.featured {
    grid-column: span 2;
}

.tour-card.featured .tour-card-image {
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .tour-card.featured {
        grid-column: span 1;
    }
}

/* ============================================
   FEATURES / INFO GRID - 2026 Bento Style
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--mft-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--mft-gray-100);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mft-red-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-6px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
    transition: color var(--transition-normal);
}

.feature-card .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--mft-red-light) 0%, rgba(255,56,92,0.15) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all var(--transition-normal);
}

.feature-card:hover .icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1) rotate(-3deg);
}

.feature-card h4 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--mft-dark);
}

.feature-card:hover h4 {
    color: var(--mft-white);
}

.feature-card p {
    font-size: 15px;
    color: var(--mft-gray-500);
    line-height: 1.65;
    margin: 0;
}

.feature-card:hover p {
    color: rgba(255,255,255,0.85);
}

/* Feature Card Arrow */
.feature-card .card-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--mft-gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--mft-gray-400);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateX(-10px);
}

.feature-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255,255,255,0.2);
    color: var(--mft-white);
}

/* Horizontal Feature Card */
.feature-card.horizontal {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
}

.feature-card.horizontal .icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--mft-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mft-gray-100);
}

.stat-card .number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--mft-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .label {
    font-size: 14px;
    color: var(--mft-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   TOUR DETAIL PAGE
   ============================================ */
.tour-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tour-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.tour-info-card {
    background: var(--mft-white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mft-gray-100);
}

.tour-info-card .icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.tour-info-card .value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--mft-navy);
}

.tour-info-card .label {
    font-size: 13px;
    color: var(--mft-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tour Sidebar */
.tour-sidebar {
    position: sticky;
    top: 120px;
}

.tour-booking-card {
    background: var(--mft-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--mft-gray-100);
}

.tour-booking-card .price-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--mft-gray-100);
    margin-bottom: 20px;
}

.tour-booking-card .price-header .from {
    font-size: 14px;
    color: var(--mft-gray-500);
}

.tour-booking-card .price-header .price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--mft-red);
    line-height: 1;
}

.tour-booking-card .price-header .per {
    font-size: 14px;
    color: var(--mft-gray-500);
}

.tour-booking-card .info-list {
    list-style: none;
    margin-bottom: 24px;
}

.tour-booking-card .info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--mft-gray-100);
    font-size: 15px;
    color: var(--mft-gray-700);
}

.tour-booking-card .info-list li .icon {
    font-size: 20px;
    flex-shrink: 0;
}

.tour-booking-card .btn {
    width: 100%;
    justify-content: center;
}

/* Tour Highlights */
.tour-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--mft-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mft-gray-100);
    transition: all var(--transition-normal);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-item .number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--mft-red) 0%, var(--mft-gold-dark) 100%);
    color: var(--mft-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 14px;
    color: var(--mft-gray-500);
    margin: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============================================
   TESTIMONIALS - 2026 Modern Cards
   ============================================ */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--mft-white);
    padding: 48px 56px;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--mft-gray-100);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--mft-red-light);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card .stars {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--mft-gold);
    letter-spacing: 4px;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 26px;
    font-style: italic;
    color: var(--mft-dark);
    line-height: 1.55;
    margin-bottom: 32px;
    position: relative;
}

.testimonial-card .author {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    color: var(--mft-dark);
}

.testimonial-card .author span {
    font-weight: 400;
    color: var(--mft-gray-500);
}

.testimonial-card .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
    border: 3px solid var(--mft-white);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CTA SECTION - 2026 Gradient Mesh
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 56, 92, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 166, 153, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 184, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section h2 {
    color: var(--mft-white);
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   STEPS (Cruise Terminal)
   ============================================ */
.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--mft-red), var(--mft-gold));
    border-radius: 2px;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.step-item .step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--mft-red) 0%, var(--mft-gold-dark) 100%);
    color: var(--mft-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.step-item .step-content {
    background: var(--mft-white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mft-gray-100);
    flex: 1;
}

.step-item .step-content h4 {
    margin-bottom: 8px;
}

.step-item .step-content p {
    font-size: 15px;
    margin: 0;
}

/* ============================================
   CONTACT / FORMS
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--mft-white);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mft-gray-100);
}

.contact-info-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-info-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--mft-gray-500);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.hours-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--mft-gray-100);
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--mft-navy);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--mft-gray-500);
}

/* ============================================
   CONTACT FORMS - Premium Airbnb Style
   ============================================ */
.contact-form-wrap {
  background: var(--mft-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mft-gray-100);
  margin: 40px 0;
}

.contact-form-wrap h3 {
  font-family: var(--font-body);
  color: var(--mft-dark);
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
}

.contact-form-wrap > p {
  color: var(--mft-gray-500);
  margin-bottom: 24px;
  font-size: 16px;
}

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

.contact-form-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-wrap label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--mft-dark);
  margin-bottom: 8px;
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--mft-gray-200);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  transition: all var(--transition-fast);
  box-sizing: border-box;
  background: var(--mft-white);
  color: var(--mft-dark);
}

.contact-form-wrap input:hover,
.contact-form-wrap select:hover,
.contact-form-wrap textarea:hover {
  border-color: var(--mft-gray-300);
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: var(--mft-dark);
  box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: var(--mft-gray-400);
}

.contact-form-wrap textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-form-wrap select {
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23717171' d='M6 8L0 2h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  appearance: none;
}

.contact-form-wrap button,
.contact-form-wrap input[type="submit"] {
  font-size: 16px;
  padding: 14px 28px;
  font-weight: 600;
  background: var(--mft-red-gradient);
  color: var(--mft-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  align-self: flex-start;
}

.contact-form-wrap button:hover,
.contact-form-wrap input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 56, 92, 0.4);
}

/* Form Field Groups */
.form-group {
  margin-bottom: 16px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Inline Form (Search Style) */
.search-form-inline {
  display: flex;
  gap: 12px;
  padding: 8px;
  background: var(--mft-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mft-gray-100);
}

.search-form-inline input {
  border: none;
  padding: 12px 20px;
  flex: 1;
}

.search-form-inline input:focus {
  box-shadow: none;
}

.search-form-inline .btn {
  border-radius: var(--radius-full);
  padding: 12px 24px;
}

@media (max-width: 640px) {
  .contact-form-wrap {
    padding: 24px;
  }
  
  .contact-form-wrap .form-row {
    grid-template-columns: 1fr;
  }
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--mft-red);
    background: var(--mft-white);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.wpcf7 input[type="submit"] {
    background: var(--mft-red);
    color: var(--mft-white);
    border: none;
    padding: 16px 40px;
    border-radius: var(--radius-xl);
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.wpcf7 input[type="submit"]:hover {
    background: var(--mft-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.35);
}

/* ============================================
   MAP EMBED
   ============================================ */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

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

/* ============================================
   FOOTER - 2026 Modern Dark
   ============================================ */
.site-footer {
    background: var(--mft-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

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

.footer-col h4 {
    color: var(--mft-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--mft-white);
}

.footer-about p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--mft-red);
    border-color: var(--mft-red);
    color: var(--mft-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--mft-red);
    transition: width var(--transition-fast);
}

.footer-links a:hover {
    color: var(--mft-white);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item .icon {
    font-size: 20px;
    flex-shrink: 0;
    color: var(--mft-red);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item a:hover {
    color: var(--mft-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--mft-red);
}

.footer-bottom .footer-legal {
    display: flex;
    gap: 24px;
}

/* Footer Review CTA */
.footer-review-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-review-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #00aa6c 0%, #00875a 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 170, 108, 0.35);
    color: white;
}

/* ============================================
   REVIEW CTA BAR (Testimonials Section)
   ============================================ */
.review-cta-bar {
    margin-top: 50px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.review-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.review-cta-text {
    font-size: 17px;
    font-weight: 500;
    color: var(--mft-navy);
}

.review-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00aa6c 0%, #00875a 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 170, 108, 0.2);
}

.btn-tripadvisor:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 170, 108, 0.35);
    color: white;
}

.btn-tripadvisor svg {
    flex-shrink: 0;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.35);
    color: white;
}

.btn-facebook svg {
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .tour-detail {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* ==========================================
       MOBILE MENU - Completely Refactored
       ========================================== */
    
    /* Hide desktop nav, show mobile toggle */
    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 10001;
    }
    
    /* Mobile menu panel */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        display: none;
        flex-direction: column;
        padding: 80px 24px 40px;
        z-index: 10000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Show menu when active */
    .main-nav.active {
        display: flex;
    }
    
    /* Menu list */
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    /* Menu items */
    .nav-menu > li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }
    
    /* Menu links - CRITICAL: these must be clickable */
    .nav-menu > li > a {
        display: block;
        width: 100%;
        padding: 18px 16px;
        color: #1a1a1a;
        font-size: 18px;
        font-weight: 500;
        text-decoration: none;
        background: transparent;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        cursor: pointer;
    }
    
    .nav-menu > li > a:hover,
    .nav-menu > li > a:active {
        background: #f5f5f5;
        color: #e63946;
    }
    
    /* Submenus */
    .nav-menu > li > .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu > li.menu-item-has-children.open > .sub-menu {
        display: block;
    }
    
    .sub-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .sub-menu li:last-child {
        border-bottom: none;
    }
    
    .sub-menu li a {
        display: block;
        padding: 14px 16px 14px 32px;
        color: #666;
        font-size: 16px;
        text-decoration: none;
    }
    
    .sub-menu li a:hover,
    .sub-menu li a:active {
        background: #f0f0f0;
        color: #e63946;
    }
    
    /* Book Now CTA in mobile menu */
    .header-cta {
        margin-top: 24px;
        padding: 0 16px;
    }
    
    .header-cta .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
    }

    /* Sections */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .review-cta-bar {
        padding: 20px;
    }

    .review-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .review-cta-buttons {
        justify-content: center;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .steps-timeline::before {
        left: 28px;
    }

    .step-item .step-number {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px;
    }

    .hero-stat .number {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 32px 20px;
    }

    .testimonial-card blockquote {
        font-size: 18px;
    }

    .contact-form-wrap {
        padding: 24px;
    }

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

    .page-hero {
        padding: 140px 0 60px;
    }
}

/* ============================================
   ANIMATIONS - 2026 Smooth & Refined
   ============================================ */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Custom Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 56, 92, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 56, 92, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Animation Classes */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out forwards;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--mft-gray-100) 25%, var(--mft-gray-50) 50%, var(--mft-gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* Focus States - Accessibility */
:focus-visible {
    outline: 2px solid var(--mft-red);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--mft-red);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--mft-red);
    color: var(--mft-white);
}

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image img {
    border-radius: var(--radius-md);
}

.entry-content {
    font-size: 17px;
    line-height: 1.8;
}

.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.entry-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1rem;
    padding-left: 24px;
}

.entry-content li {
    margin-bottom: 8px;
}

/* MFT Plugin form styling */
.mft-booking-form-container {
    background: var(--mft-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--mft-gray-100);
}

/* Scroll to top - 2026 Style */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--mft-red-gradient);
    color: var(--mft-white);
    border: none;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all var(--transition-bounce);
    z-index: 99;
    box-shadow: var(--shadow-lg), var(--mft-red-glow);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(255, 56, 92, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* Mobile nav overlay - hidden, using fullscreen menu instead */
.nav-overlay {
    display: none;
}
