/*
Theme Name: Reis Retime
Theme URI: https://reisgenie.com
Author: Wpdirector
Author URI: https://fiverr.com/wpdirector/
Description: A high-performance, SEO-optimized travel blog theme for destinations, city trips, and travel routes. Built for speed (95+ PageSpeed score) with advanced features.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reis-retime
Tags: travel, blog, destinations, custom-post-types, seo-ready, performance, responsive
*/

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

:root {
    --primary-color: #E94E3D;
    --secondary-color: #2C3E50;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #E5E5E5;
    --background-light: #F8F9FA;
    --white: #FFFFFF;
    --highlight-color: #D4A574;
    --transition: all 0.3s ease;
}

body {
    font-family: creolia;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--secondary-color);
}

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

/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    background: transparent;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Non-transparent header (when transparent is disabled) */
.site-header:not(.transparent-header) {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Ensure header is relative for mobile search positioning */

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffff; /* White by default for transparent header */
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
}

/* Dark color for non-transparent header */
.site-header:not(.transparent-header) .main-navigation a {
    color: var(--secondary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e94e3d00;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.header-search {
    position: relative;
}

.header-search input[type="search"] {
    padding: 10px 40px 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    width: 250px;
    font-size: 14px;
    transition: var(--transition);
    background: transparent;
    color: #ffffff;
}

.header-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Search field for non-transparent header */
.site-header:not(.transparent-header) .header-search input[type="search"] {
    border-color: var(--border-color);
    color: var(--text-color);
}

.site-header:not(.transparent-header) .header-search input[type="search"]::placeholder {
    color: var(--light-text);
}

.header-search input[type="search"]:focus {
    outline: none;
    border-color: var(--primary-color);
    width: 300px;
}

.header-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
}

/* Search button for non-transparent header */
.site-header:not(.transparent-header) .header-search button {
    color: var(--light-text);
}



/* === Transparent Header === */
.site-header.transparent-header {
    background: transparent !important;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Transparent Header - Text color for transparent header */
/* ONLY applies to TOP LEVEL menu items, NOT dropdown */
.site-header.transparent-header .primary-menu > li > a,
.site-header.transparent-header .search-form input,
.site-header.transparent-header .search-submit {
    color: #fff !important;
}




/* CRITICAL: Dropdown menu uses its OWN colors from theme options */
/* .site-header .mega-menu-dropdown,
.site-header .mega-menu-dropdown *,
.site-header .mega-menu-dropdown a,
.site-header.transparent-header .mega-menu-dropdown,
.site-header.transparent-header .mega-menu-dropdown *,
.site-header.transparent-header .mega-menu-dropdown a {
    color: inherit !important;
} */

/* Continent headers always white text */
.site-header .mega-menu-continent-header,
.site-header.transparent-header .mega-menu-continent-header {
    color: #ffffff !important;
}

/* Remove any background from header container when transparent */
.site-header.transparent-header .header-container {
    background: transparent !important;
}

/* Ensure logo doesn’t have unwanted background */
.site-logo img {
    background: transparent !important;
}

/* Hide default WordPress menu toggle that sometimes appears */
button.menu-toggle,
.menu-toggle {
    display: none !important;
    visibility: hidden !important;
}







/* ==========================================================================
   Hero Banner
   ========================================================================== */

.destination-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.destination-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.destination-hero h1 {
    font-size: 80px;
    font-weight: 700;
    text-shadow: 2px 2px 30px rgba(0,0,0,0.4);
    margin: 0;
    letter-spacing: 1px;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Common Section Container
   ========================================================================== */

.section-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Section 1: Introduction & Highlights (Two Columns)
   ========================================================================== */

.intro-highlights-section {
    padding: 50px 0;
    background: var(--white);
}

.intro-highlights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
    align-items: start;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-top: -88px;
    z-index: 999;
}

.intro-text p {
    margin-bottom: 20px;
}

.highlights-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0);
    margin-top: -51px;
}

.highlights-box h3 {
    font-size: 18px;
    color: #D4A574;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #000;
    font-size: 17px;
    line-height: 1.6;
}

.highlights-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4A574;
    font-weight: bold;
    font-size: 20px;
}

/* ==========================================================================
   Section 2: Handy for Your Trip (Horizontal Layout)
   ========================================================================== */

.handy-trip-section {
    padding: 60px 0;
    background: var(--white);
}

.handy-trip-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.handy-trip-title {
    color: var(--highlight-color);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    flex-shrink: 0;
    min-width: 150px;
}

.handy-trip-title .handy-line-2 {
    display: block;
}

.handy-trip-items {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    flex: 1;
}

.handy-trip-card {
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 180px;
}

.handy-trip-card:hover {
    transform: translateY(-5px);
}

.handy-trip-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.handy-trip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.handy-trip-card h3 {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.4;
}

/* ==========================================================================
   Section 3: Related Articles (Full Width) - UPDATED
   ========================================================================== */

.related-articles-section {
    padding: 60px 0;
    background: var(--background-light);
}

.related-articles-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--highlight-color);
    margin-bottom: 40px;
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

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

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

/* Destination Tags - Top Left */
.blog-destination-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 10;
}

.destination-tag {
    background: #c34f5a;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Blog Title Overlay - Bottom Left */
.blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    color: var(--white);
    z-index: 5;
}

.blog-card-content h3 {
    font-size: 20px;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Remove old styles that are no longer needed */
.blog-card-badges {
    display: none;
}

.destination-badge {
    display: none;
}

h1.blog-page-title {
    text-align: center;
    padding: 40px;
    font-family: Creolia,Lato,Setif;
    font-size: 2.3529411764706rem;
}


/* ==========================================================================
   Section 4: Destination Information (Two Columns) - UPDATED
   ========================================================================== */

.destination-info-section {
    padding: 60px 0;
    background: var(--white);
}

.destination-info-section h2 {
    font-size: 32px;
    color: var(--highlight-color);
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}

.info-section-grid {
    display: grid;
    grid-template-columns: 60% 30%;
    gap: 60px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0;
    align-items: start;
}

.info-content-left {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
    border-radius: 12px;
    overflow: hidden;
}

.info-table tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table tr:hover {
    background: rgba(212, 165, 116, 0.05);
}

.info-table th,
.info-table td {
    padding: 20px 25px;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    font-weight: 600;
    color: var(--secondary-color);
    width: 28%;
    font-size: 16px;
    background: rgba(248, 249, 250, 0.8);
    border-right: 1px solid var(--border-color);
}

.info-table td {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.info-content-right {
    background: transparent;
    border-radius: 12px;
    min-height: 400px;
    display: none;
    /* Fully empty - no background, no content */
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #FFF5EB;
    padding: 60px 0 30px;
    margin-top: 0px;
    position: relative;
}

/* Footer Top Shape Divider */
.footer-shape-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

.footer-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

@media (max-width: 768px) {
    .footer-shape-divider svg {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .footer-shape-divider svg {
        height: 40px;
    }
}

/* ==========================================================================
   FOOTER WIDGET (Elementor)
   ========================================================================== */

.reis-footer-widget {
    background: #FFF5EB;
    padding: 60px 20px 30px;
}

.reis-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Logo & About Column */
.reis-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reis-footer-logo {
    margin-bottom: 17px;
}

.reis-footer-logo img {
    width: 115px;
    height: auto;
}

.reis-footer-about-text {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    font-family: creolia, sans-serif;
}

.reis-footer-cta {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #C44F5A;
    color: #C44F5A;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.reis-footer-cta:hover {
    background: #C44F5A;
    color: #ffffff;
}

/* Quick Links Column */
.reis-footer-links h4 {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: creolia, sans-serif;
}

.reis-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reis-footer-menu a {
    display: inline-block;
    padding: 12px 20px;
    background: #C44F5A;
    color: #ffffff !important;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(196, 79, 90, 0.2);
}

.reis-footer-menu a:hover {
    background: #b34450;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 79, 90, 0.3);
}

.no-menu-selected {
    color: #999;
    font-style: italic;
}

/* Social Column */
.reis-footer-social h4 {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: creolia, sans-serif;
}

.reis-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reis-social-icon {
    width: 50px;
    height: 50px;
    background: #C44F5A;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(196, 79, 90, 0.2);
}

.reis-social-icon i {
    color: #ffffff;
    font-size: 20px;
}

.reis-social-icon:hover {
    background: #b34450;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(196, 79, 90, 0.3);
}

/* Footer Bottom */
.reis-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
}

.reis-footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.reis-footer-left,
.reis-footer-right {
    flex: 1;
}

.reis-footer-left {
    text-align: left;
}

.reis-footer-right {
    text-align: right;
}

.reis-footer-left p,
.reis-footer-right p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.reis-footer-left a,
.reis-footer-right a {
    color: #666666;
    text-decoration: underline;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.reis-footer-left a:hover,
.reis-footer-right a:hover {
    color: #C44F5A;
}

/* Footer Widget Responsive */
@media (max-width: 1024px) {
    .reis-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .reis-footer-brand {
        align-items: center;
    }
    
    .reis-footer-menu {
        justify-content: center;
    }
    
    .reis-social-icons {
        justify-content: center;
    }
    
    .reis-footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reis-footer-left,
    .reis-footer-right {
        text-align: center;
    }
    
    .reis-footer-left a {
        display: block;
        margin: 10px 0 0 0;
    }
}

@media (max-width: 768px) {
    .reis-footer-widget {
        padding: 40px 15px 25px;
    }
    
    .reis-footer-content {
        gap: 35px;
    }
    
    .reis-footer-menu a {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .reis-social-icon {
        width: 45px;
        height: 45px;
    }
    
    .reis-social-icon i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .reis-footer-menu a {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .reis-social-icons {
        gap: 10px;
    }
    
    .reis-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .reis-social-icon i {
        font-size: 16px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-brand img {
    margin-bottom: 17px;
    width: 115px;
}

.footer-brand p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-cta {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-cta:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-links h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Footer Button Menu - NEW STYLING */
.footer-button-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-button-menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.footer-button-menu a,
.footer-menu-btn {
    display: inline-block;
    padding: 20px 24px;
    background: #C44F5A;
    color: #ffffff !important;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(196, 79, 90, 0.2);
}

.footer-button-menu a:hover,
.footer-menu-btn:hover {
    background: #b34450;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 79, 90, 0.3);
}

/* Remove old footer-nav styles */
.footer-nav {
    display: none !important;
}

.footer-nav-btn {
    display: none !important;
}

.footer-social h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #C44F5A;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(196, 79, 90, 0.2);
}

.social-icon i {
    color: #ffffff;
    font-size: 20px;
}

.social-icon:hover {
    background: #b34450;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(196, 79, 90, 0.3);
}

.social-icon svg {
    fill: #ffffff;
    width: 22px;
    height: 22px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-left p,
.footer-right p {
    margin: 0;
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
}

.footer-left a,
.footer-right a {
    color: var(--light-text);
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.footer-left a:hover,
.footer-right a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #C44F5A;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(196, 79, 90, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

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

.back-to-top:hover {
    background: #b34450;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(196, 79, 90, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    stroke: #ffffff;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .intro-highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlights-box {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .info-section-grid {
        gap: 40px;
    }
    
    .info-table th,
    .info-table td {
        padding: 18px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer button menu responsive */
    .footer-button-menu {
        gap: 10px;
    }
    
    .footer-button-menu a,
    .footer-menu-btn {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    /* Social icons responsive */
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
    
    /* Footer bottom responsive */
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
    }
    
    .footer-left a {
        display: block;
        margin: 10px 0 0 0;
    }
    
    /* Back to top button mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .destination-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .destination-hero h1 {
        font-size: 56px;
    }
    
    .intro-highlights-section {
        padding-top: 40px;
    }
    
    .intro-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-box {
        display: none;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-content h3 {
        font-size: 18px;
    }
    
    .destination-tag {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    /* Info Section Mobile */
    .info-section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-content-right {
        min-height: 200px;
        padding: 30px;
    }
    
    .info-table th,
    .info-table td {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .info-table th {
        width: 40%;
    }
    
    /* Mobile Affiliate Section - Horizontal Slider */
    .handy-trip-section {
        padding: 40px 0;
    }
    
    .handy-trip-section .section-container {
        padding: 0;
        max-width: 100%;
    }
    
    .handy-trip-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .handy-trip-title {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        padding: 0 20px;
        font-size: 24px;
    }
    
    .handy-trip-title .handy-line-2 {
        display: inline;
    }
    
    .handy-trip-items {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 20px;
        width: 100%;
        margin-left: 15px;
    }
    
    .handy-trip-items::-webkit-scrollbar {
        display: none;
    }
    
    .handy-trip-card {
        flex: 0 0 calc((100vw - 50px) / 2.2);
        width: calc((100vw - 50px) / 2.2);
        scroll-snap-align: start;
    }
    
    .handy-trip-image {
        height: 160px;
    }
    
    .handy-trip-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .destination-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .destination-hero h1 {
        font-size: 42px;
    }
    
    .intro-text {
        font-size: 16px;
        margin-top: 0;
    }
    
    .highlights-box h3 {
        font-size: 16px;
    }
    
    .handy-trip-card {
        flex: 0 0 calc((100vw - 50px) / 2.2);
        width: calc((100vw - 50px) / 2.2);
    }
    
    .blog-card-image-wrapper {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 15px;
    }
    
    .blog-card-content h3 {
        font-size: 16px;
    }
    
    .destination-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    /* Info Section Mobile Small */
    .destination-info-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .info-table th,
    .info-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .info-table th {
        width: 45%;
    }
    
    .info-content-right {
        padding: 20px;
        min-height: 150px;
    }
    
    .info-content-placeholder h3 {
        font-size: 18px;
    }
    
    .info-content-placeholder p {
        font-size: 14px;
    }
}

/* ==========================================================================
   ELEMENTOR CUSTOM WIDGETS STYLES
   ========================================================================== */

/* Destination Card Widget */
.reis-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
}

.reis-destination-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.reis-destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reis-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.reis-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.reis-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reis-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.reis-card-content h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reis-card-content h3 a:hover {
    color: var(--primary-color);
}

.reis-card-excerpt {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.reis-card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.reis-card-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsive Styles for Elementor Widgets */
@media (max-width: 1024px) {
    .reis-destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reis-destination-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reis-card-image {
        height: 220px;
    }
    
    .reis-card-content {
        padding: 20px;
    }
    
    .reis-card-content h3 {
        font-size: 20px;
    }
}

/* Elementor Editor Compatibility */
.elementor-widget-reis-destination-card {
    margin-bottom: 0 !important;
}

.elementor-widget-reis-destination-card .elementor-widget-container {
    padding: 0;
}

/* Loading State */
.reis-destination-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ==========================================================================
   SINGLE POST TEMPLATE STYLES
   ========================================================================== */

/* Post Hero Section */
.post-hero {
    position: relative;
    height: 100vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.post-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

/* Hero Tags - Top Left */
.post-hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-tag {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.hero-tag:hover {
    transform: translateY(-2px);
}

.hero-tag-destination {
    background: #c34f5a;
    color: var(--white);
}

.hero-tag-category {
    background: #c34f5a;
    color: var(--white);
}

/* Post Title */
.post-hero-title {
    font-size: 56px;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    margin: 0;
    line-height: 1.2;
    max-width: 900px;
}


.post-breadcrumb {
    font-size: 17px;
    padding-bottom: 20px;
    font-weight: 600;
    font-family: creolia, sans-serif;
    color: #333333;
}

.tour-intro-text {
    font-size: 17px;
    padding-bottom: 35px;
    line-height: 1.7;
    font-family: creolia, sans-serif;
    color: #333333;
}

.tour-intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    font-family: creolia, sans-serif;
    margin-bottom: 20px;
}

/* Post Content Section */
.post-content-section {
    padding: 25px 0;
    background: var(--white);
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

/* Main Content Column */
.post-main-content {
    background: var(--white);
}

/* Post Meta */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light-text);
}

.post-meta svg {
    flex-shrink: 0;
}

.post-meta .post-categories a {
    color: var(--primary-color);
    font-weight: 500;
}

.post-meta .post-categories a:hover {
    color: var(--secondary-color);
}

/* Post Content Text */
.post-content-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 40px;
    font-family: creolia, sans-serif;
}

.post-content-text h2 {
    font-size: 35px;
    color: #2C3E50;
    margin: 40px 0 20px;
    font-weight: 700;
    font-family: creolia, sans-serif;
}

h2.tour-section-title {
    font-size: 35px;
    font-weight: 700;
    padding-bottom: 15px;
    font-family: creolia, sans-serif;
    color: #2C3E50;
    line-height: 1.3 !important;
}

.post-content-text h3 {
    font-size: 28px;
    color: #2C3E50;
    margin: 30px 0 15px;
    font-weight: 700;
    font-family: creolia, sans-serif;
}

.post-content-text h4 {
    font-size: 22px;
    color: #2C3E50;
    margin: 25px 0 12px;
    font-weight: 600;
    font-family: creolia, sans-serif;
}

.post-content-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    font-family: creolia, sans-serif;
}

.post-content-text ul,
.post-content-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content-text li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 17px;
    color: #333333;
    font-family: creolia, sans-serif;
}

.post-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-content-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--background-light);
    font-style: italic;
    color: var(--light-text);
}

.post-content-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.post-content-text a:hover {
    color: var(--secondary-color);
}

/* Post Tags */
.post-tags {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.post-tags strong {
    color: var(--secondary-color);
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    padding: 5px 15px;
    background: var(--background-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    margin: 5px 5px 5px 0;
    transition: var(--transition);
}

.post-tags a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Post Info Section */
.post-info-section {
    margin: 50px 0;
}

.post-info-section h2 {
    font-size: 28px;
    color: var(--highlight-color);
    margin-bottom: 25px;
    font-weight: 600;
}

/* Sidebar Styles */
.post-sidebar {
    position: sticky;
    top: 100px;
}

/* Author Bio Box */
.author-bio-box {
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.author-avatar {
    margin-bottom: 20px;
}

.author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 3px solid var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 15px 0;
}

.author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.author-social-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.author-social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Related Posts Section */
.related-posts-section {
    padding: 60px 0;
    background: var(--background-light);
}

.related-posts-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--highlight-color);
    margin-bottom: 40px;
    font-weight: 600;
}

/* Comments Section Styling */
.comments-area {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.comments-title {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--background-light);
    border-radius: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-metadata {
    font-size: 13px;
    color: var(--light-text);
}

.comment-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.reply {
    margin-top: 15px;
}

.comment-reply-link {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}



/* -------------------------------------------------
   FULL-WIDTH RESPONSIVE GOOGLE MY MAP
   ------------------------------------------------- */
.tour-map-fullwidth {
    width: 100%;
    max-width: 100%;
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.tour-map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.tour-map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    border-radius: 12px;
}

p.comment-form-cookies-consent {
    display: none;
}

/* Optional: Mobile fine-tuning */
@media (max-width: 768px) {
    .tour-map-fullwidth {
        margin: 2rem 0;
        border-radius: 8px;
    }
}

/* Responsive Design for Single Post */
@media (max-width: 1024px) {
    .post-layout {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .post-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .post-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .post-hero-content {
        padding: 0 20px;
    }
    
    .hero-tag {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .post-hero-title {
        font-size: 36px;
    }
    
    .post-content-text {
        font-size: 16px;
    }
    
    .post-content-text h2 {
        font-size: 28px;
    }
    
    .post-content-text h3 {
        font-size: 22px;
    }
    
    .author-bio-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .post-hero-content {
        padding: 0 15px;
    }
    
    .hero-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .post-hero-title {
        font-size: 28px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-content-text h2 {
        font-size: 24px;
    }
    
    .post-content-text h3 {
        font-size: 20px;
    }
    
    .author-bio-box {
        padding: 20px;
    }
}

/* ==========================================================================
   DAY BY DAY ITINERARY SECTION
   ========================================================================== */

.day-by-day-itinerary {
    margin: 60px 0;
    padding: 0;
}

.itinerary-title {
    font-size: 35px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: creolia, sans-serif;
}

.itinerary-list {
    margin-bottom: 40px;
}

.itinerary-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itinerary-list ul li {
    margin-bottom: 18px;
    padding-left: 22px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    font-family: creolia, sans-serif;
}

.itinerary-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2C3E50;
    font-weight: bold;
    font-size: 20px;
}

.itinerary-list ul li strong {
    font-weight: 700;
    color: #2C3E50;
}

.itinerary-list ul li em {
    font-style: italic;
    color: #666666;
    font-size: 16px;
}

/* Itinerary Day Section Styling */
.itinerary-list h3,
.itinerary-list h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin: 40px 0 20px 0;
    line-height: 1.3;
    font-family: creolia, sans-serif;
}

.itinerary-list h3:first-child,
.itinerary-list h4:first-child {
    margin-top: 0;
}

.itinerary-list p {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
    font-family: creolia, sans-serif;
}

.itinerary-list p strong {
    font-weight: 700;
    color: #2C3E50;
}

/* Hotel/Link Button Styling inside itinerary */
.itinerary-list a,
.itinerary-list p a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C44F5A;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.itinerary-list a:hover,
.itinerary-list p a:hover {
    color: #b34450;
    gap: 14px;
}

.itinerary-list a svg,
.itinerary-list p a svg {
    transition: transform 0.3s ease;
}

.itinerary-list a:hover svg,
.itinerary-list p a:hover svg {
    transform: translateX(3px);
}

/* Individual Day Section Styling */
.itinerary-day-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.itinerary-day-section:first-of-type {
    margin-top: 60px;
}

.itinerary-day-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 20px 0;
    line-height: 1.3;
    font-family: creolia, sans-serif;
}

.itinerary-day-section .day-description {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
    font-family: creolia, sans-serif;
}

.itinerary-day-section .day-description p {
    margin-bottom: 20px;
}

.itinerary-day-section .day-accommodation {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin: 20px 0;
    font-family: creolia, sans-serif;
}

.itinerary-day-section .day-accommodation strong {
    font-weight: 700;
    color: #2C3E50;
}

.day-booking-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C44F5A;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-family: creolia, sans-serif;
}

.day-booking-link svg:first-child {
    flex-shrink: 0;
}

.day-booking-link:hover {
    color: #b34450;
    gap: 12px;
}

.day-booking-link svg {
    transition: transform 0.3s ease;
}

.day-booking-link:hover svg:last-child {
    transform: translateX(3px);
}

.day-section-image {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.day-section-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-section-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Day by Day Tour Section Styling */
.tour-day-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.tour-day-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.tour-day-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 25px 0;
    line-height: 1.3;
    font-family: creolia, sans-serif;
}

.tour-day-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 30px;
    font-family: creolia, sans-serif;
}

.tour-day-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    font-family: creolia, sans-serif;
}

.tour-day-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-day-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-day-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tour-booking-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C44F5A;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: creolia, sans-serif;
}

.tour-booking-link svg:first-child {
    flex-shrink: 0;
}

.tour-booking-link:hover {
    color: #b34450;
    gap: 12px;
}

.tour-booking-link svg {
    transition: transform 0.3s ease;
}

.tour-booking-link:hover svg:last-child {
    transform: translateX(3px);
}

/* Lightbox Styling */
.reis-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 10000;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    transition: transform 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 35px;
    }
}

/* ==========================================================================
   STICKY HEADER FUNCTIONALITY (Redux Theme Options)
   ========================================================================== */

/* Default header - non-sticky */
.site-header {
    transition: all 0.3s ease;
}

/* Sticky header enabled */
.site-header.sticky-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

/* When header becomes sticky while scrolling */
.site-header.sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px);
}

/* Add padding to body when sticky header is active to prevent content jump */
body.has-sticky-header {
    padding-top: 90px;
}

/* Transparent header option */
.site-header.transparent-header {
	background: rgba(0, 0, 0, 0) !important;
	box-shadow: none !important;
}

/* When transparent header scrolls, become solid */
.site-header.transparent-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Text color for transparent header */
/* .site-header.transparent-header .main-navigation a,
.site-header.transparent-header .search-field,
.site-header.transparent-header .search-submit {
    color: #ffffff !important;
} */

/* When scrolled, change text back to dark */
.site-header.transparent-header.scrolled .primary-menu > li > a,
.site-header.transparent-header.scrolled .search-field,
.site-header.transparent-header.scrolled .search-submit {
    color: #2C3E50 !important;
}

/* Mobile menu toggle icon color for transparent header */
.site-header.transparent-header .mobile-menu-toggle span {
    background: #ffffff;
}

.site-header.transparent-header.scrolled .mobile-menu-toggle span {
    background: #2C3E50;
}

/* Search icon color on transparent header */
.site-header.transparent-header .mobile-search-toggle svg {
    color: #ffffff;
}

.site-header.transparent-header.scrolled .mobile-search-toggle svg {
    color: #2C3E50;
}

/* Tip Box Styling */
.itinerary-tip-box {
    background: #FFF5F0;
    border-radius: 12px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tip-image {
    flex-shrink: 0;
}

.tip-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.tip-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tip-text {
    flex: 1;
    font-size: 17px;
    line-height: 1.65;
    color: #333333;
    font-family: creolia, sans-serif;
}

.tip-text strong {
    font-weight: 700;
    color: #333333;
}

.tip-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #C44F5A;
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(196, 79, 90, 0.25);
    letter-spacing: 0.3px;
}

.tip-button:hover {
    background: #b34450;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 79, 90, 0.35);
}

.tip-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tip-button:hover svg {
    transform: translateX(3px);
}

/* Responsive Design for Itinerary */
@media (max-width: 768px) {
    .day-by-day-itinerary {
        margin: 40px 0;
    }
    
    .itinerary-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .itinerary-list ul li {
        font-size: 15px;
        margin-bottom: 14px;
    }
    
    .itinerary-tip-box {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        text-align: center;
    }
    
    .tip-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .tip-image img {
        width: 80px;
        height: 80px;
    }
    
    .tip-text {
        font-size: 15px;
    }
    
    .tip-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .itinerary-title {
        font-size: 24px;
    }
    
    .itinerary-list ul li {
        font-size: 14px;
        padding-left: 18px;
    }
    
    .itinerary-tip-box {
        padding: 20px;
    }
    
    .tip-text {
        font-size: 14px;
    }
}

/* ==========================================================================
   ABOUT DESTINATION SECTION (from About Destination tab)
   ========================================================================== */

.about-destination-section {
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: creolia, sans-serif;
}

.about-destination-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.about-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #333;
    font-size: 17px;
}

.about-description p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.about-image-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.about-image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.about-image-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design for About Destination */
@media (max-width: 768px) {
    .about-destination-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .about-destination-section h2 {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-destination-section h2 {
        font-size: 22px;
    }
    
    .about-description {
        font-size: 15px;
    }
}

/* ==========================================================================
   ITINERARY PLANS / AFFILIATE LINKS SECTION
   ========================================================================== */

.itinerary-plans-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.itinerary-plans-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C3E50;
    font-family: 'creolia', serif;
    font-weight: 600;
}

.itinerary-plans-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #333;
    font-size: 17px;
    font-family: 'creolia', serif;
}

.itinerary-plans-description p {
    margin-bottom: 20px;
}

/* Affiliate Links Container - CRITICAL FIXES */
.affiliate-links-container {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none !important; /* Remove any list styling */
    padding: 0 !important;
}

.affiliate-link-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    list-style: none !important; /* Remove list styling */
    padding: 0 !important;
    margin: 0 !important;
}

.affiliate-link-item::before {
    display: none !important; /* Remove any pseudo-element bullets */
}

/* Font Awesome Icon Styling */
.affiliate-link-item i {
    font-size: 20px;
    color: #C44F5A;
    margin-top: 3px;
    flex-shrink: 0;
    font-style: normal !important; /* Ensure Font Awesome renders */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background-color: #ec979f21;
    border-radius: 50px;
    overflow: hidden;
    height: 40px !important;
    width: 40px !important;
    background-repeat: no-repeat;
    background-size: cover;
}

.affiliate-link-item a {
    color: #C44F5A;
    text-decoration: none;
    font-size: 17px;
    font-family: 'creolia', serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none !important;
}

.affiliate-link-item a:hover {
    color: #b34450;
    gap: 12px;
}

.affiliate-link-item a span {
    border-bottom: 1px solid #C44F5A;
    transition: border-color 0.3s ease;
    font-weight: 700; /* Make affiliate titles bold */
}

.affiliate-link-item a:hover span {
    border-bottom-color: #b34450;
}

.affiliate-link-item a svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.affiliate-link-item a:hover svg {
    transform: translateX(3px);
}

/* Images Stack */
.itinerary-plans-images-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.itinerary-plans-image-item {
    cursor: pointer;
    width: 100%;
}

.itinerary-plans-image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
}

.itinerary-plans-image-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .itinerary-plans-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .itinerary-plans-section h2 {
        font-size: 24px;
    }
    
    .itinerary-plans-description {
        font-size: 16px;
    }
    
    .affiliate-link-item a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .itinerary-plans-section h2 {
        font-size: 22px;
    }
    
    .itinerary-plans-description {
        font-size: 15px;
    }
    
    .affiliate-link-item a {
        font-size: 15px;
    }
}

/* ==========================================================================
   YOU MIGHT ALSO LIKE SECTION
   ========================================================================== */

.related-posts-section {
    position: relative;
    padding: 100px 0 80px;
    background: #F5F0E8;
    margin-top: 80px;
}

.related-posts-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.related-posts-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.related-posts-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.related-posts-heading {
    font-size: 32px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 50px 0;
    font-family: creolia, sans-serif;
    text-align: left;
    padding-left: 0;
}

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

.related-post-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-post-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.related-post-image {
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
}

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

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

.related-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.related-post-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    z-index: 2;
    font-family: creolia, sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Related Posts */
@media (max-width: 1024px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .related-posts-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 768px) {
    .related-posts-section {
        padding: 60px 0 50px;
        margin-top: 60px;
    }
    
    .related-posts-heading {
        font-size: 28px;
        margin-bottom: 35px;
        padding: 0;
    }
    
    /* Make it a horizontal slider on mobile */
    .related-posts-container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .related-posts-grid {
        display: flex;
        grid-template-columns: none;
        gap: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 0 20px 0;
        margin: 0;
    }
    
    /* Hide scrollbar */
    .related-posts-grid::-webkit-scrollbar {
        display: none;
    }
    
    .related-posts-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .related-post-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
    }
    
    .related-post-image {
        height: 300px;
    }
    
    .related-post-title {
        font-size: 18px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .related-posts-section {
        padding: 50px 0 40px;
        margin-top: 50px;
    }
    
    .related-posts-heading {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0;
    }
    
    .related-posts-container {
        padding: 0 20px;
    }
    
    .related-posts-grid {
        gap: 12px;
        padding: 0 0 20px 0;
    }
    
    .related-post-card {
        flex: 0 0 90%;
        min-width: 90%;
    }
    
    .related-post-image {
        height: 250px;
    }
    
    .related-post-title {
        font-size: 16px;
        padding: 18px;
    }
}

/* ==========================================================================
   MOBILE TITLE & AUTHOR SECTION (Below Banner on Mobile)
   ========================================================================== */

/* Hide mobile header by default (desktop) */
.post-mobile-header {
    display: none;
}

/* Hide mobile TOC by default (desktop) */
.mobile-toc-wrapper {
    display: none;
}

/* Show desktop title by default */
.post-hero-title.desktop-title {
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Ensure proper positioning hierarchy on mobile */
    .post-hero {
        position: relative;
        height: 60vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    .post-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    
    .post-hero-content {
        position: relative;
        height: 100%;
        width: 100%;
        padding: 0 20px;
    }
    
    /* HIDE desktop tags on mobile */
    .post-hero-tags.desktop-tags {
        display: none !important;
    }
    
    /* Hide desktop title on mobile */
    .post-hero-title.desktop-title {
        display: none !important;
    }
    
    /* Show mobile header section */
    .post-mobile-header {
        display: block;
        background: #ffffff;
        padding: 30px 0 35px;
        margin-top: -2px;
    }
    
    .post-mobile-header .section-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Mobile Tags (FIRST - Above Title) */
    .post-mobile-tags {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .mobile-tag {
        padding: 8px 18px;
        border-radius: 5px;
        font-size: 13px;
        font-weight: 600;
        text-transform: capitalize;
        display: inline-block;
    }
    
    .mobile-tag-destination {
        background: #c34f5a;
        color: #ffffff;
    }
    
    .mobile-tag-category {
        background: #c34f5a;
        color: #ffffff;
    }
    
    /* Mobile Title Styling (SECOND) */
    .post-mobile-title {
        font-size: 32px;
        font-weight: 700;
        color: #2C3E50;
        margin: 0 0 25px 0;
        line-height: 1.25;
        font-family: creolia, sans-serif;
    }
    
    /* Mobile Author Info */
    .post-mobile-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .mobile-author-image {
        flex-shrink: 0;
    }
    
    .mobile-author-image img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .mobile-author-info {
        display: flex;
        flex-direction: column;
        gap: 3px;
        line-height: 1.3 !important;
    }
    
    .mobile-author-label {
        font-size: 11px;
        color: #7f8c8d;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
        font-family: creolia, sans-serif;
    }
    
    .mobile-author-name {
        font-size: 16px;
        color: #2C3E50;
        font-weight: 600;
        font-family: creolia, sans-serif;
    }
    
    /* HIDE SIDEBAR ON MOBILE */
    .post-sidebar {
        display: none !important;
    }
    
    /* SHOW MOBILE TOC */
    .mobile-toc-wrapper {
        display: block;
        margin: 40px 0;
    }
    
    .mobile-toc-box {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .mobile-toc-title {
        background: #d69f3a;
        color: #ffffff;
        font-family: 'creolia', serif;
        font-size: 24px;
        font-weight: 700;
        padding: 20px 25px;
        margin: 0;
        text-align: center;
        letter-spacing: 0.5px;
    }
    
    .mobile-toc-list {
        list-style: none;
        padding: 25px 30px;
        margin: 0;
        padding-bottom: 30px;
    }
    
    .mobile-toc-item {
        margin-bottom: 15px;
        padding-left: 20px;
        position: relative;
    }
    
    .mobile-toc-item:last-child {
        margin-bottom: 0;
    }
    
    .mobile-toc-item::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #000000;
        font-size: 20px;
        line-height: 1.4;
    }
    
    .mobile-toc-link {
        display: block;
        color: #000000;
        font-family: 'creolia', serif;
        font-size: 16px;
        line-height: 1.5;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-toc-link:hover {
        color: #d69f3a;
    }
    
    .mobile-toc-link.active {
        color: #d69f3a;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .post-mobile-header {
        padding: 25px 0 30px;
    }
    
    /* Mobile Tags (FIRST) */
    .post-mobile-tags {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .mobile-tag {
        font-size: 12px;
        padding: 7px 16px;
    }
    
    /* Mobile Title (SECOND) */
    .post-mobile-title {
        font-size: 26px;
        margin-bottom: 22px;
    }
    
    /* Mobile Author (THIRD) */
    .mobile-author-image img {
        width: 45px;
        height: 45px;
    }
    
    .mobile-author-label {
        font-size: 10px;
    }
    
    .mobile-author-name {
        font-size: 15px;
    }
    
    /* Mobile TOC adjustments for small screens */
    .mobile-toc-wrapper {
        margin: 30px 0;
    }
    
    .mobile-toc-title {
        font-size: 20px;
        padding: 18px 20px;
    }
    
    .mobile-toc-list {
        padding: 20px 25px;
        padding-bottom: 25px;
    }
    
    .mobile-toc-link {
        font-size: 15px;
    }
}