/*
 * Machupicchu Andean Wonder - Main Stylesheet
 * Author: Cusco Creativos
 */

/* Import Outfit font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* CSS Variables for design tokens */
:root {
    --primary-color: #ff532b;
    --primary-hover: #e04420;
    --text-white: #ffffff;
    --text-muted: #e5e5e5;
    --header-height: 100px;
    --font-family: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

/* Screen Reader Skip Link */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link:focus {
    background-color: #f1f1f1;
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px;
    position: absolute;
    top: 5px;
    text-decoration: none;
    width: auto;
    z-index: 100000;
}

/* Header & Navigation */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    transition: background var(--transition-speed) ease, height var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

/* Header scrolled state */
.site-header--scrolled {
    position: fixed;
    height: 80px;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-logo-link {
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
}

.custom-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 83, 43, 0.18);
}

.custom-logo-link img,
.site-logo {
    max-height: 65px;
    width: auto;
    display: block;
    transition: max-height var(--transition-speed) ease;
}

.site-header--scrolled .custom-logo-link {
    padding: 4px 12px;
}

.site-header--scrolled .custom-logo-link img,
.site-header--scrolled .site-logo {
    max-height: 52px;
}

/* Branding fallback text */
.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.site-description {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

#primary-menu,
.main-navigation .menu ul,
.main-navigation > ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

#primary-menu a,
.main-navigation .menu a,
.main-navigation > ul a {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.5px;
}

/* Active Menu Item & Hover Underline Animation */
#primary-menu a::after,
.main-navigation .menu a::after,
.main-navigation > ul a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

#primary-menu a:hover::after,
.main-navigation .menu a:hover::after,
.main-navigation > ul a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* WordPress Active Page class */
#primary-menu .current-menu-item > a::after,
#primary-menu .current_page_item > a::after,
.main-navigation .current_page_item > a::after {
    transform: scaleX(1);
}

/* Social Media Icons */
.header-socials {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-icon svg,
.social-icon i {
    width: 18px;
    height: 18px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    fill: currentColor;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Banner Container */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    color: var(--text-white);
    isolation: isolate; /* Creates stacking context for z-index children */
}

/* YouTube Video Background Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background: #000000;
}

/* Cover aspect ratio styling for iframe */
.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 ratio of height */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Dark Superposition Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Hero Content Styling */
.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 10;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Premium Button */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 83, 43, 0.3);
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 83, 43, 0.5);
}

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

/* Bottom Waves SVG Divider */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 20;
}

.hero-waves svg {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
}

.hero-waves .wave-back {
    fill: rgba(255, 255, 255, 0.3);
}

.hero-waves .wave-front {
    fill: #ffffff;
}

/* CSS Keyframe Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Area */
.site-main {
    padding: 4rem 10%;
    background-color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .site-header {
        padding: 0 3%;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .header-socials {
        display: none; /* Hide socials in tiny screens or move them inside mobile menu */
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    .site-header {
        position: fixed;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    /* Mobile Menu Navigation overlay */
    .main-navigation {
        position: static;
    }

    .main-navigation ul {
        display: none !important; /* Hide list by default on mobile */
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.98);
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 3rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        z-index: 1050;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* When mobile menu toggled */
    .main-navigation.toggled ul {
        display: flex !important;
    }

    #primary-menu a {
        font-size: 1.2rem;
        display: block;
        text-align: center;
        width: 100%;
    }

    #primary-menu a::after {
        display: none; /* Disable animations on mobile hover */
    }

    #primary-menu .current-menu-item > a,
    #primary-menu .current_page_item > a {
        color: var(--primary-color);
        border-bottom: none;
    }

    .hero-banner {
        padding: 0 5%;
        text-align: center;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-waves svg {
        height: 80px;
    }
}

/* ==========================================================================
   Features Section (Tarjetas de Servicios)
   ========================================================================== */
.features-section {
    padding: 100px 8% 120px 8%;
    background-color: #fbfbfb; /* Light neutral background to make cards pop */
    position: relative;
    z-index: 30;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.features-header {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
}

.features-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

/* Subtle top hover accent line */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 83, 43, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    border-color: rgba(255, 83, 43, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(2deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .features-header {
        border-left: 4px solid var(--primary-color);
        padding-left: 1.5rem;
    }

    .features-header h2 {
        font-size: 2rem;
    }
}

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

@media (max-width: 600px) {
    .features-section {
        padding: 60px 5% 80px 5%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Tours Slider Section (Carrusel de Tours Más Vistos)
   ========================================================================== */
.tours-slider-section {
    padding: 100px 8% 120px 8%;
    background-color: #ffffff; /* Alternating sections, white background */
    position: relative;
    z-index: 30;
}

.tours-slider-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tours-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.tours-slider-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.tours-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.tours-slider-controls {
    display: flex;
    gap: 0.75rem;
}

.tours-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 83, 43, 0.15);
    background-color: transparent;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tours-slider-btn svg {
    width: 20px;
    height: 20px;
}

.tours-slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 83, 43, 0.3);
    transform: translateY(-2px);
}

.tours-slider-btn:active {
    transform: translateY(0);
}

.tours-slider-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
    border-color: #e2e2e2;
    color: #999999;
}

/* Track & Wrappers */
.tours-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0; /* padding so card transform shadow is not clipped */
    margin: -10px 0;
}

.tours-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* Tour Card */
.tour-card {
    flex: 0 0 calc(33.333% - 1.333rem); /* 3 cards on desktop */
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 83, 43, 0.15);
}

/* Card Image */
.tour-card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    width: 100%;
}

.tour-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Badges */
.tour-card-badges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 10;
}

.tour-badge {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.badge-difficulty {
    background-color: var(--primary-color);
}

.badge-altitude {
    background-color: rgba(18, 18, 18, 0.75);
}

.badge-altitude svg {
    width: 12px;
    height: 12px;
}

/* Card Body */
.tour-card-body {
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
    display: block;
}

.tour-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.tour-card-title a {
    color: #111111;
    transition: color 0.3s ease;
}

.tour-card-title a:hover,
.tour-card:hover .tour-card-title a {
    color: var(--primary-color);
}

/* Specs Row */
.tour-card-specs {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f2f2f2;
    font-size: 0.85rem;
    color: #666666;
}

.tour-spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tour-spec-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Footer Link button */
.tour-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
}

.tour-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #111111;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.tour-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.tour-card-link:hover,
.tour-card:hover .tour-card-link {
    color: var(--primary-color);
}

.tour-card:hover .tour-card-link svg {
    transform: translateX(5px);
}

/* Slider Dots */
.tours-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dce1e6;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-dot:hover {
    background-color: #b0b9c1;
}

.slider-dot.active {
    background-color: var(--primary-color);
    width: 26px;
    border-radius: 10px;
}

.no-tours-found {
    text-align: center;
    color: #666666;
    padding: 3rem 0;
    font-size: 1.1rem;
}

/* Responsive queries */
@media (max-width: 1024px) {
    .tours-slider-section {
        padding: 80px 5% 100px 5%;
    }

    .tour-card {
        flex: 0 0 calc(50% - 1rem); /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .tours-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .tours-slider-controls {
        align-self: flex-end;
    }

    .tours-slider-title {
        font-size: 2rem;
    }

    .tour-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
}

/* ==========================================================================
   About Adventure Section (Sección Guía de Aventuras)
   ========================================================================== */
.about-adventure-section {
    padding: 100px 8% 120px 8%;
    background-color: #fbfbfb; /* off-white back to alternate with white slider */
    position: relative;
    z-index: 30;
}

.about-adventure-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-adventure-image-col {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
}

.about-main-image {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-adventure-image-col:hover .about-main-image {
    transform: scale(1.02);
}

/* Content Area */
.about-adventure-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2.2rem;
}

/* Features List */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.about-feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.015);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-feature-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(255, 83, 43, 0.04);
    border-color: rgba(255, 83, 43, 0.12);
}

.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.12) rotate(2deg);
}

.about-feature-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.about-feature-text p {
    font-size: 0.92rem;
    color: #666666;
    line-height: 1.55;
}

.about-footer {
    width: 100%;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .about-adventure-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-adventure-image-col {
        min-height: auto;
        height: 400px;
    }
    
    .about-main-image {
        max-height: 400px;
    }
}

@media (max-width: 600px) {
    .about-adventure-section {
        padding: 60px 5% 80px 5%;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-feature-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .about-feature-icon {
        width: auto;
        height: auto;
    }
}

/* ==========================================================================
   Testimonials Section (Opiniones de Viajeros)
   ========================================================================== */
.testimonials-section {
    padding: 100px 8% 120px 8%;
    background-color: #ffffff; /* Alternating backgrounds: white */
    position: relative;
    z-index: 30;
}

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

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.testimonials-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.testimonials-controls {
    display: flex;
    gap: 0.75rem;
}

.testimonials-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 83, 43, 0.15);
    background-color: transparent;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonials-slider-btn svg {
    width: 20px;
    height: 20px;
}

.testimonials-slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 83, 43, 0.3);
    transform: translateY(-2px);
}

.testimonials-slider-btn:active {
    transform: translateY(0);
}

.testimonials-slider-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
    border-color: #e2e2e2;
    color: #999999;
}

/* Track & Wrappers */
.testimonials-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 15px 0; /* padding so card transform shadow is not clipped */
    margin: -15px 0;
}

.testimonials-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* Card layout */
.testimonial-card {
    flex: 0 0 calc(33.333% - 1.333rem); /* 3 cards visible on desktop */
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 83, 43, 0.1);
}

/* Background Quote Sign */
.testimonial-quote-mark {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(255, 83, 43, 0.06);
    width: 48px;
    height: 48px;
    pointer-events: none;
    transition: color 0.4s ease;
}

.testimonial-quote-mark svg {
    width: 100%;
    height: 100%;
}

.testimonial-card:hover .testimonial-quote-mark {
    color: rgba(255, 83, 43, 0.12);
}

/* Star rating row */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
    color: #ffb800; /* Gold color */
}

.star-icon {
    width: 16px;
    height: 16px;
}

/* Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444444;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Author info */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.avatar-initials {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(255, 83, 43, 0.1);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
    line-height: 1.3;
    margin: 0;
}

.testimonial-origin {
    font-size: 0.82rem;
    color: #777777;
    margin-top: 2px;
}

/* Slider Dots */
.testimonials-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3.5rem;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 80px 5% 100px 5%;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 1rem); /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .testimonials-controls {
        align-self: flex-end;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-card {
        flex: 0 0 100%; /* 1 card on mobile */
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   FAQ Section (Preguntas Frecuentes)
   ========================================================================== */
.faq-section {
    padding: 100px 8% 120px 8%;
    background-color: #fbfbfb; /* Alternating background: off-white */
    position: relative;
    z-index: 30;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4.5rem;
}

.faq-title-column {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.faq-intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2.2rem;
}

/* Accordion Column */
.faq-accordion-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.015);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border-color: rgba(255, 83, 43, 0.1);
}

.faq-item.active {
    box-shadow: 0 15px 35px rgba(255, 83, 43, 0.05);
    border-color: rgba(255, 83, 43, 0.15);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
    color: #111111;
    transition: color 0.3s ease;
}

.faq-trigger span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 1.5rem;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: #888888;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s ease;
}

.faq-trigger:hover .faq-chevron,
.faq-item.active .faq-chevron {
    color: var(--primary-color);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
}

.faq-item.active .faq-content {
    opacity: 1;
}

.faq-content-inner {
    padding: 0 2rem 1.8rem 2rem;
}

.faq-content-inner p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .faq-section {
        padding: 80px 5% 100px 5%;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-title-column {
        position: relative;
        top: 0;
    }

    .faq-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .faq-trigger {
        padding: 1.2rem 1.4rem;
    }

    .faq-trigger span {
        font-size: 1rem;
    }

    .faq-content-inner {
        padding: 0 1.4rem 1.4rem 1.4rem;
    }
}

/* ==========================================================================
   Blogs Slider Section (Listado de Blogs)
   ========================================================================== */
.blogs-slider-section {
    padding: 100px 8% 120px 8%;
    background-color: #ffffff; /* Alternating background: white */
    position: relative;
    z-index: 30;
}

.blogs-slider-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blogs-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.blogs-slider-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.blogs-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
}

.blogs-slider-controls {
    display: flex;
    gap: 0.75rem;
}

.blogs-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 83, 43, 0.15);
    background-color: transparent;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogs-slider-btn svg {
    width: 20px;
    height: 20px;
}

.blogs-slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 83, 43, 0.3);
    transform: translateY(-2px);
}

.blogs-slider-btn:active {
    transform: translateY(0);
}

.blogs-slider-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
    border-color: #e2e2e2;
    color: #999999;
}

/* Track & Wrappers */
.blogs-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 15px 0; /* padding so card transform shadow is not clipped */
    margin: -15px 0;
}

.blogs-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* Card layout */
.blog-card {
    flex: 0 0 calc(33.333% - 1.333rem); /* 3 cards visible on desktop */
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 83, 43, 0.1);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Aspect Ratio 5:3 */
    overflow: hidden;
    background-color: #f0f0f0;
}

.blog-card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.blog-card-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(255, 83, 43, 0.25);
    z-index: 10;
}

.blog-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.6rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.2rem;
    margin-top: auto;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #111111;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

.blog-card-link .arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-link:hover {
    color: var(--primary-color);
}

.blog-card-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* Dots */
.blogs-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3.5rem;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .blogs-slider-section {
        padding: 80px 5% 100px 5%;
    }

    .blog-card {
        flex: 0 0 calc(50% - 1rem); /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .blogs-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .blogs-slider-controls {
        align-self: flex-end;
    }

    .blogs-slider-title {
        font-size: 2rem;
    }

    .blog-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
}

/* ==========================================================================
   Footer Section (Pie de Página)
   ========================================================================== */
.site-footer {
    background-color: #ffffff;
    padding: 0;
    position: relative;
    z-index: 30;
}

.footer-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}

.footer-mountain-img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 90px;
    object-fit: cover;
    object-position: center bottom;
}

.footer-main-wrapper {
    padding: 60px 8% 40px 8%;
    background-color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-branding {
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-logo {
    max-height: 120px;
    width: auto;
    display: block;
}

.footer-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.6rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li a {
    color: #555555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #555555;
    font-size: 0.95rem;
}

.footer-contact li a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.contact-icon {
    width: 18px;
    height: 18px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    text-align: center;
}

.footer-divider-line {
    border: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    margin: 3.5rem 0 2rem 0;
}

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

.footer-copyright p {
    font-size: 0.82rem;
    color: #777777;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(255, 83, 43, 0.2);
}

.social-circle svg,
.social-circle i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 83, 43, 0.35);
    background-color: #e0441d;
}

.footer-payments {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .footer-main-wrapper {
        padding: 50px 5% 30px 5%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col-branding {
        align-items: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col-title {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

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

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-divider-line {
        margin: 2.5rem 0 1.5rem 0;
    }
}

/* ==========================================================================
   Single Tour / Product Details Page
   ========================================================================== */
.tour-detail-page-wrapper {
    background-color: #ffffff;
    padding: 40px 0 100px 0;
}

/* 1+4 Gallery Grid */
.tour-gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    padding: 0 4%;
}

.tour-gallery-main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 520px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.tour-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tour-gallery-main:hover img {
    transform: scale(1.03);
}

.tour-gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 520px;
}

.tour-gallery-thumb-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.tour-gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tour-gallery-thumb-item:hover img {
    transform: scale(1.05);
}

/* Content Container & Grid Layout */
.tour-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

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

/* Breadcrumbs */
.tour-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #888888;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.tour-breadcrumbs a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-breadcrumbs a:hover {
    color: var(--primary-color);
}

.tour-breadcrumbs .breadcrumb-separator {
    color: #bbbbbb;
}

.tour-breadcrumbs .breadcrumb-current {
    color: #333333;
    font-weight: 500;
}

/* Title */
.tour-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.25;
}

/* Body Text */
.tour-description-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 35px;
}

/* Highlights Box */
.tour-highlights-box {
    background: #fbfbfb;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.tour-highlights-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

.tour-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tour-bullets-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #555555;
}

.tour-bullets-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Specs Row */
.tour-specs-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 45px;
}

.tour-spec-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
}

.tour-spec-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 83, 43, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-spec-icon-wrapper i {
    font-size: 1.15rem;
}

.tour-spec-details {
    display: flex;
    flex-direction: column;
}

.tour-spec-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.tour-spec-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #333333;
}

/* Tabs System */
.tour-tabs-wrapper {
    margin-bottom: 50px;
}

.tour-tabs-buttons {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.tour-tab-btn {
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #f3f4f6;
    color: #4b5563;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-tab-btn:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.tour-tab-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 83, 43, 0.2);
}

.tour-tabs-panels {
    position: relative;
}

.tour-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tour-tab-panel.active {
    display: block;
}

.itinerary-day-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.itinerary-day-box p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #555555;
    padding-left: 15px;
}

/* Product FAQs Section */
.tour-product-faqs {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 45px;
}

.tour-faqs-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.tour-faq-item {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tour-faq-item.active {
    border-color: rgba(255, 83, 43, 0.15);
    box-shadow: 0 4px 15px rgba(255, 83, 43, 0.03);
}

.tour-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
    color: #111111;
    transition: color 0.3s ease;
}

.tour-faq-trigger span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    padding-right: 1rem;
}

.tour-faq-icon {
    font-size: 1rem;
    color: #888888;
    transition: transform 0.3s ease, color 0.3s ease;
}

.tour-faq-item.active .tour-faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.tour-faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
}

.tour-faq-item.active .tour-faq-content {
    opacity: 1;
}

.tour-faq-content-inner {
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.tour-faq-content-inner p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Sidebar Styling */
.tour-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-action-box {
    background: #fbfbfb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.btn-sidebar {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-sidebar-reserve {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 83, 43, 0.25);
}

.btn-sidebar-reserve:hover {
    background-color: #e0441d;
    box-shadow: 0 6px 20px rgba(255, 83, 43, 0.35);
    transform: translateY(-2px);
}

.btn-sidebar-contact {
    background-color: #e5e7eb;
    color: #374151;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.btn-sidebar-contact:hover {
    background-color: #d1d5db;
    color: #111827;
    transform: translateY(-2px);
}

/* Specialist Card */
.tour-specialist-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.specialist-avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 3px solid rgba(255, 83, 43, 0.1);
    background-color: #f3f4f6;
}

.specialist-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.specialist-description {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 25px;
}

.btn-specialist-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-specialist-whatsapp i {
    font-size: 1.2rem;
}

.btn-specialist-whatsapp:hover {
    background-color: #1ebd5a;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness for single product */
@media (max-width: 1024px) {
    .tour-gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .tour-gallery-main {
        height: 380px;
    }
    
    .tour-gallery-thumbs {
        height: auto;
        grid-template-rows: auto auto;
    }
    
    .tour-gallery-thumb-item {
        height: 180px;
    }

    .tour-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tour-sidebar-column {
        flex-direction: row;
        align-items: stretch;
    }
    
    .tour-action-box,
    .tour-specialist-card {
        flex: 1;
        margin-bottom: 0;
    }
    
    .tour-action-box {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tour-specs-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tour-sidebar-column {
        flex-direction: column;
    }
    
    .tour-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .tour-specs-row {
        grid-template-columns: 1fr;
    }
    
    .tour-tabs-buttons {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .tour-tab-btn {
        flex-grow: 1;
        text-align: center;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Header styling for non-home pages to ensure legibility and correct alignment */
body:not(.home) .site-header {
    position: relative;
    background-color: #121212; /* Dark background matching the scrolled state */
}

body:not(.home) .tour-detail-page-wrapper,
body:not(.home) .site-main {
    padding-top: 40px; /* Sensible padding below relative header */
}

/* Pages with hero banners don't need the extra top padding on .site-main */
body:not(.home) .page-main-content {
    padding-top: 3rem;
}


/* Sticky sidebar on tour detail page */
.tour-sidebar-column {
    position: sticky;
    top: 100px;
}

/* =====================================================
   PAGE TEMPLATE STYLES
   ===================================================== */

/* Hero Banner */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1.5rem;
}

.page-hero-title {
    font-family: var(--font-family);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.page-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumbs a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.page-breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    font-size: 0.6rem;
    opacity: 0.5;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

/* Main Content Area */
.page-main-content {
    padding: 3rem 0 5rem 0;
    background-color: #ffffff;
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-article {
    background: #ffffff;
}

.page-article .entry-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444444;
}

.page-article .entry-content h2 {
    font-family: var(--font-family);
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.page-article .entry-content h3 {
    font-family: var(--font-family);
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 2rem 0 0.8rem 0;
}

.page-article .entry-content h4 {
    font-family: var(--font-family);
    font-size: 1.15rem;
    font-weight: 600;
    color: #333333;
    margin: 1.5rem 0 0.6rem 0;
}

.page-article .entry-content p {
    margin-bottom: 1.2rem;
}

.page-article .entry-content ul,
.page-article .entry-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.page-article .entry-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.3rem;
}

.page-article .entry-content ul li::marker {
    color: var(--primary-color);
}

.page-article .entry-content a {
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-speed) ease;
}

.page-article .entry-content a:hover {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-hover);
}

.page-article .entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: #fef5f2;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555555;
}

.page-article .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.page-article .entry-content table th {
    background: #1a1a2e;
    color: #ffffff;
    padding: 0.8rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.page-article .entry-content table td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #eee;
}

.page-article .entry-content table tr:nth-child(even) td {
    background: #fafafa;
}

.page-article .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1rem 0;
}/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Specific Contact Hero Banner with dynamic backdrop image */
.page-template-page-contactanos .page-hero {
    background-image: linear-gradient(135deg, rgba(26, 26, 46, 0.82) 0%, rgba(22, 33, 62, 0.82) 100%), url('/wp-content/uploads/2025/02/bg-machupicchu-1.jpg');
    background-size: cover;
    background-position: center;
}

/* Glassmorphism breadcrumbs style for contact hero */
.page-template-page-contactanos .page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-template-page-contactanos .page-breadcrumbs a {
    color: #ff8c6b;
    font-weight: 600;
}

.page-template-page-contactanos .page-breadcrumbs a:hover {
    color: #ffffff;
}

/* Contact Info Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 83, 43, 0.08);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 83, 43, 0.12);
    border-color: rgba(255, 83, 43, 0.35);
    background: #ffffff;
}

.contact-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8c6b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(255, 83, 43, 0.25);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 25px rgba(255, 83, 43, 0.45);
}

.contact-card h3 {
    font-family: var(--font-family);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.contact-card p {
    font-size: 0.92rem;
    color: #555555;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.contact-card a {
    color: #555555;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Contact Form Section - 2 Column Layout */
.contact-form-section {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 1rem;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
    font-family: var(--font-family);
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}

.contact-form-subtitle {
    font-size: 0.98rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Contact Form Elements */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.contact-form input,
.contact-form textarea {
    font-family: var(--font-family);
    font-size: 0.95rem;
    padding: 0.95rem 1.2rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 83, 43, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit-btn {
    font-family: var(--font-family);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7b5a 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 6px 20px rgba(255, 83, 43, 0.25);
    width: auto;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 83, 43, 0.35);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translate(4px, -4px);
}

.contact-submit-btn:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Dynamic Success State */
.contact-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.contact-success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s both;
}

.contact-success-state h2 {
    font-family: var(--font-family);
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.contact-success-state p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 480px;
    margin-bottom: 25px;
}

.contact-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a2e;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    transition: all var(--transition-speed) ease;
}

.contact-back-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 83, 43, 0.2);
}

/* Contact Form Embed (for WPForms or similar) */
.contact-form-embed .wpforms-container,
.contact-form-embed .wpcf7 {
    margin-top: 0;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-map-wrapper,
.contact-social-box,
.contact-hours-box {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.contact-map-wrapper:hover,
.contact-social-box:hover,
.contact-hours-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(226, 232, 240, 1);
}

.contact-map-wrapper h3,
.contact-social-box h3,
.contact-hours-box h3 {
    font-family: var(--font-family);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-map iframe {
    transition: transform 0.4s ease;
    display: block;
}

.contact-map:hover iframe {
    transform: scale(1.03);
}

/* Social Links */
.contact-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #475569;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-social-link:hover {
    transform: translateY(-4px) scale(1.08);
    color: #ffffff;
}

.contact-social-link.facebook:hover {
    background: #1877F2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.contact-social-link.instagram:hover {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.contact-social-link.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-social-link.tiktok:hover {
    background: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-social-link.youtube:hover {
    background: #FF0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Business Hours */
.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #64748b;
    transition: all 0.2s ease;
}

.contact-hours-list li:last-child {
    border-bottom: none;
}

.contact-hours-list li span:first-child {
    font-weight: 600;
    color: #1e293b;
}

.contact-hours-list li:hover {
    padding-left: 6px;
    color: var(--primary-color);
}

.contact-hours-list li:hover span:first-child {
    color: var(--primary-color);
}

/* =====================================================
   PAGE TEMPLATE RESPONSIVE
   ==================================================== */

@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 260px;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-container {
        padding: 0 1.2rem;
    }

    .page-main-content {
        padding: 2.5rem 0 3.5rem 0;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-article .entry-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 220px;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .page-breadcrumbs {
        font-size: 0.8rem;
    }
}

/* =====================================================
   COMPLAINTS BOOK (LIBRO DE RECLAMACIONES)
   ===================================================== */
.complaints-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.complaints-company-header {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.complaints-company-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.complaints-company-logo {
    flex-shrink: 0;
    width: 90px;
}

.complaints-company-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.complaints-company-details h2 {
    font-family: var(--font-family);
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.complaints-company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    font-size: 0.85rem;
    color: #666666;
}

.complaints-company-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.complaints-company-meta i {
    color: var(--primary-color);
}

.complaints-legal-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 83, 43, 0.05);
    border: 1px solid rgba(255, 83, 43, 0.15);
    border-radius: 12px;
    width: 220px;
    flex-shrink: 0;
}

.complaints-legal-badge i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.complaints-legal-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333333;
}

.complaints-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.complaints-section {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-speed) ease;
}

.complaints-section:hover {
    border-color: rgba(255, 83, 43, 0.15);
    box-shadow: 0 15px 40px rgba(255, 83, 43, 0.04);
}

.complaints-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1.5px solid #f5f7fa;
    padding-bottom: 15px;
}

.complaints-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.complaints-section-header h3 {
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.complaints-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.complaints-row:last-child {
    margin-bottom: 0;
}

.complaints-row-1 {
    grid-template-columns: 1fr;
}

.complaints-row-2 {
    grid-template-columns: 1fr 1fr;
}

.complaints-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.complaints-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.complaints-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.complaints-field label .required {
    color: var(--primary-color);
    margin-left: 2px;
}

.complaints-field input,
.complaints-field select,
.complaints-field textarea {
    font-family: var(--font-family);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    transition: all var(--transition-speed) ease;
    outline: none;
    width: 100%;
}

.complaints-field input:focus,
.complaints-field select:focus,
.complaints-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 83, 43, 0.1);
}

.complaints-field input::placeholder,
.complaints-field textarea::placeholder {
    color: #a0aec0;
}

.complaints-field input.readonly-field {
    background: #f7fafc;
    color: #718096;
    cursor: not-allowed;
    border-color: #edf2f7;
}

.complaints-field textarea {
    resize: vertical;
}

.complaints-radio-group {
    display: flex;
    gap: 25px;
    align-items: center;
    min-height: 48px;
}

.complaints-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.complaints-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-custom {
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.complaints-radio:hover input ~ .radio-custom {
    border-color: var(--primary-color);
}

.complaints-radio input:checked ~ .radio-custom {
    border-color: var(--primary-color);
}

.radio-custom:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.complaints-radio input:checked ~ .radio-custom:after {
    display: block;
}

.radio-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
}

.radio-tooltip {
    color: #94a3b8;
    cursor: help;
    font-size: 0.85rem;
    transition: color var(--transition-speed) ease;
}

.radio-tooltip:hover {
    color: var(--primary-color);
}

.complaints-checkbox {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.complaints-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    display: inline-block;
    position: relative;
    transition: all var(--transition-speed) ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.complaints-checkbox:hover input ~ .checkbox-custom {
    border-color: var(--primary-color);
}

.complaints-checkbox input:checked ~ .checkbox-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-custom:after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.complaints-checkbox input:checked ~ .checkbox-custom:after {
    display: block;
}

.complaints-checkbox span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475569;
}

.complaints-checkbox span a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.complaints-minor-check {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.complaints-minor-fields {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.complaints-minor-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.complaints-minor-label i {
    color: var(--primary-color);
}

.complaints-file-upload {
    width: 100%;
}

.file-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
    background: #f8fafc;
    width: 100%;
}

.file-upload-area.drag-over,
.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(255, 83, 43, 0.02);
}

.file-upload-area i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.file-upload-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.file-upload-hint {
    font-size: 0.8rem;
    color: #64748b;
}

.file-input-hidden {
    display: none;
}

.file-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #334155;
}

.file-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.file-name {
    font-weight: 500;
}

.file-size {
    margin-left: auto;
    color: #64748b;
}

.complaints-section-submit {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.complaints-terms {
    width: 100%;
}

.complaints-response-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.5;
    width: 100%;
}

.complaints-response-notice i {
    font-size: 1.1rem;
    color: #d97706;
    margin-top: 2px;
    flex-shrink: 0;
}

.complaints-response-notice p {
    margin: 0;
}

.complaints-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #ff7b5a);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(255, 83, 43, 0.2);
    width: auto;
    min-width: 200px;
}

.complaints-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 83, 43, 0.3);
}

.complaints-submit-btn:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.complaints-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.complaints-success-icon {
    font-size: 4.5rem;
    color: #10b981;
    margin-bottom: 25px;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.complaints-success h2 {
    font-family: var(--font-family);
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.complaints-success p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 500px;
    margin-bottom: 30px;
}

.complaints-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a2e;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    transition: all var(--transition-speed) ease;
}

.complaints-back-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 83, 43, 0.2);
}

@keyframes scaleUp {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsiveness for Complaints Form */
@media (max-width: 1024px) {
    .complaints-company-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 25px;
    }

    .complaints-legal-badge {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        padding: 12px 20px;
    }

    .complaints-legal-badge i {
        font-size: 1.4rem;
    }

    .complaints-legal-badge span {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .complaints-page {
        padding: 20px 10px;
    }

    .complaints-company-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .complaints-company-logo {
        width: 70px;
    }

    .complaints-company-details h2 {
        font-size: 1.2rem;
    }

    .complaints-company-meta {
        flex-direction: column;
        gap: 10px;
    }

    .complaints-section {
        padding: 25px 20px;
    }

    .complaints-row-2,
    .complaints-row-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .complaints-radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        height: auto;
        min-height: auto;
    }

    .complaints-submit-btn {
        width: 100%;
        max-width: none;
    }
}

/* =====================================================
   BLOG PAGE STYLES
   ===================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
    position: relative;
}

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

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

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

.blog-card-image.no-image {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 3rem;
}

.blog-card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 83, 43, 0.3);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-card-date .day {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.blog-card-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.blog-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.blog-card-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-card-title {
    font-family: var(--font-family);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #1a1a2e;
    transition: color var(--transition-speed) ease;
}

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

.blog-card-excerpt {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
    align-self: flex-start;
}

.blog-card-read-more i {
    font-size: 0.85rem;
    transition: transform var(--transition-speed) ease;
}

.blog-card-read-more:hover {
    color: #ff7b5a;
}

.blog-card-read-more:hover i {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    border-radius: 12px;
    background: #ffffff;
    color: #1a1a2e;
    font-weight: 600;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-speed) ease;
}

.blog-pagination .page-numbers:hover {
    background: #f8fafc;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.blog-pagination .page-numbers.current {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 83, 43, 0.25);
}

.blog-pagination .next,
.blog-pagination .prev {
    gap: 8px;
}

.blog-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.blog-no-results .no-results-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.blog-no-results h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.blog-no-results p {
    color: #64748b;
    font-size: 1rem;
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}

/* =====================================================
   SINGLE POST STYLES
   ===================================================== */
.single-post-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: -80px; /* Overlap with content */
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 1;
}

.single-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.5rem 6rem; /* Extra padding at bottom for overlap */
    max-width: 900px;
    width: 100%;
}

.single-hero-categories {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-badge {
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 83, 43, 0.3);
}

.single-hero-title {
    font-family: var(--font-family);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.single-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.single-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-hero-meta .meta-item i {
    color: var(--primary-color);
}

.single-post-article {
    position: relative;
    z-index: 10;
}

.single-post-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 4rem 5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    margin-bottom: 4rem;
}

.single-entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.single-entry-content h2, 
.single-entry-content h3, 
.single-entry-content h4 {
    font-family: var(--font-family);
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.single-entry-content h2 { font-size: 2rem; }
.single-entry-content h3 { font-size: 1.6rem; }

.single-entry-content p {
    margin-bottom: 1.5rem;
}

.single-entry-content img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}

.single-entry-content blockquote {
    font-style: italic;
    font-size: 1.3rem;
    color: #1a1a2e;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: #f8fafc;
    border-radius: 0 16px 16px 0;
}

.single-tags-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.single-tags-links i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 5px;
}

.single-tags-links a {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.single-tags-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.single-post-share {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    text-align: center;
}

.single-post-share h3 {
    font-family: var(--font-family);
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: #ffffff;
}

.share-btn.facebook { background: #1877F2; box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4); }
.share-btn.twitter { background: #1DA1F2; box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4); }
.share-btn.whatsapp { background: #25D366; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

.single-post-navigation {
    margin-top: 4rem;
}

.single-post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.single-post-navigation .nav-previous,
.single-post-navigation .nav-next {
    flex: 1;
}

.single-post-navigation .nav-next {
    text-align: right;
}

.single-post-navigation a {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.single-post-navigation a:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 83, 43, 0.08);
    transform: translateY(-3px);
}

.nav-direction {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-post-navigation .nav-next .nav-direction {
    justify-content: flex-end;
}

.nav-title {
    font-family: var(--font-family);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
}

/* Fix single post page margins to allow full-width hero */
body.single-post .site-main {
    padding: 0;
}

body.single-post .single-post-hero {
    padding-top: var(--header-height);
}

.single-post-container {
    max-width: 850px;
    width: calc(100% - 2.5rem);
    margin: 0 auto 4rem;
    background: #ffffff;
    border-radius: 24px;
    padding: 4rem 5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.single-comments-container {
    padding-bottom: 6rem;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

/* Premium Comments Section */
.comments-title,
.comment-reply-title {
    font-family: var(--font-family);
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.comments-title {
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.comment-reply-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

#cancel-comment-reply-link {
    font-size: 0.85rem;
    color: #ef4444;
    font-weight: 600;
    text-decoration: underline;
    transition: color var(--transition-speed) ease;
}

#cancel-comment-reply-link:hover {
    color: #dc2626;
}

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

.comment-list .comment {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.comment-list .comment:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-list .children {
    list-style: none;
    margin: 1.5rem 0 0 3rem;
    padding: 0;
    border-left: 2px solid #e2e8f0;
    padding-left: 1.5rem;
}

.comment-body {
    display: flex;
    gap: 1.25rem;
    position: relative;
}

.comment-body .avatar {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #ffffff;
}

.comment-meta {
    flex-grow: 1;
}

.comment-meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 5px;
}

.comment-author .fn {
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    font-style: normal;
}

.comment-author a {
    color: inherit;
    transition: color var(--transition-speed) ease;
}

.comment-author a:hover {
    color: var(--primary-color);
}

.comment-metadata {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.comment-metadata a {
    color: inherit;
}

.comment-metadata a:hover {
    color: var(--primary-color);
}

.comment-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

.comment-content p {
    margin-bottom: 0.75rem;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(255, 83, 43, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    transition: all var(--transition-speed) ease;
}

.comment-reply-link:hover {
    background: var(--primary-color);
    color: #ffffff !important;
}

.comment-reply-link i {
    font-size: 0.75rem;
}

.comment-list .bypostauthor > .comment-body {
    background: rgba(255, 83, 43, 0.02);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px dashed rgba(255, 83, 43, 0.2);
}

.comment-list .bypostauthor > .comment-body .avatar {
    border-color: var(--primary-color);
}

/* Comment Form Styling */
.logged-in-as,
.comment-notes {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.logged-in-as a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color var(--transition-speed) ease;
}

.logged-in-as a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 769px) {
    .comment-form {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .comment-form-comment,
    .comment-form-cookies-consent,
    .form-submit,
    .logged-in-as,
    .comment-notes {
        grid-column: span 3;
    }
}

.comment-form p {
    margin: 0;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    font-family: var(--font-family);
    font-size: 0.95rem;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #333333;
    transition: all var(--transition-speed) ease;
    outline: none;
    width: 100%;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 83, 43, 0.1);
}

.comment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.comment-form label .required {
    color: var(--primary-color);
}

.comment-form-comment textarea {
    min-height: 160px;
    resize: vertical;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0.5rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
}

.comment-form-cookies-consent label {
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1.4;
}

.comment-form .form-submit {
    margin-top: 1rem;
}

.comment-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #ff7b5a);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(255, 83, 43, 0.25);
    width: auto;
}

.comment-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 83, 43, 0.35);
}

.comment-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Responsive Single Post Adjustments */
@media (max-width: 768px) {
    .single-hero-title {
        font-size: 2.2rem;
    }
    
    .single-post-hero {
        min-height: 380px;
    }

    .single-post-container {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem 3rem;
        width: calc(100% - 2rem);
    }

    .single-post-navigation .nav-links {
        flex-direction: column;
    }
    
    .single-post-navigation .nav-next {
        text-align: left;
    }
    
    .single-post-navigation .nav-next .nav-direction {
        justify-content: flex-start;
    }

    .comment-list .children {
        margin-left: 1.5rem;
        padding-left: 1rem;
    }
    
    .comment-body {
        gap: 1rem;
    }
    
    .comment-body .avatar {
        width: 45px;
        height: 45px;
    }
}

/* ==========================================================================
   WooCommerce Archive & Category Listing Styles
   ========================================================================== */
body.woocommerce-page .site-main {
    background-color: #f8fafc;
    padding: 60px 8%;
}

/* Breadcrumb navigation styling */
.woocommerce-breadcrumb {
    font-family: var(--font-family) !important;
    font-size: 0.9rem !important;
    color: #64748b !important;
    margin-bottom: 25px !important;
    font-weight: 500 !important;
}

.woocommerce-breadcrumb a {
    color: #1a1a2e !important;
    transition: color var(--transition-speed) ease !important;
}

.woocommerce-breadcrumb a:hover {
    color: var(--primary-color) !important;
}

/* Page Header styling */
.woocommerce-products-header {
    margin-bottom: 30px !important;
    position: relative !important;
}

.woocommerce-products-header__title.page-title {
    font-family: var(--font-family) !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    line-height: 1.2 !important;
    margin: 0 0 15px 0 !important;
    letter-spacing: -0.02em !important;
}

/* Category Description */
.woocommerce-products-header .term-description {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    color: #555555 !important;
    max-width: 800px !important;
    margin-bottom: 25px !important;
}

/* Filters & Results layout wrapper */
.woocommerce-result-count {
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    color: #64748b !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 12px 0 !important;
    float: left !important;
}

.woocommerce-ordering {
    margin: 0 0 30px 0 !important;
    float: right !important;
}

.woocommerce-ordering select {
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 12px 35px 12px 16px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    outline: none !important;
    cursor: pointer !important;
    transition: all var(--transition-speed) ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 16px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

.woocommerce-ordering select:hover {
    border-color: #94a3b8 !important;
}

.woocommerce-ordering select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 83, 43, 0.1) !important;
}

/* Clear WooCommerce floats */
.woocommerce-products-header::after,
.woocommerce-ordering::after,
.woocommerce-result-count::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

/* Products loop grid */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 2.5rem 0 !important;
    padding: 0 !important;
    list-style: none !important;
    clear: both !important;
}

/* Product Card */
ul.products li.product {
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
}

ul.products li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 83, 43, 0.2) !important;
}

/* Product link wrapping */
ul.products li.product .woocommerce-LoopProduct-link {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-decoration: none !important;
    color: inherit !important;
    margin-bottom: 1rem !important;
}

/* Product thumbnail image */
ul.products li.product img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
    margin: 0 !important;
    display: block !important;
}

ul.products li.product:hover img {
    transform: scale(1.05) !important;
}

/* Product Title */
ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-family) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    line-height: 1.4 !important;
    margin: 1.25rem 1.25rem 0.75rem 1.25rem !important;
    padding: 0 !important;
    flex-grow: 1 !important;
    transition: color var(--transition-speed) ease !important;
}

ul.products li.product:hover .woocommerce-loop-product__title {
    color: var(--primary-color) !important;
}

/* Price styling */
ul.products li.product .price {
    font-family: var(--font-family) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin: 0 1.25rem 1.25rem 1.25rem !important;
    display: block !important;
}

ul.products li.product .price del {
    color: #94a3b8 !important;
    font-size: 0.95rem !important;
    margin-right: 6px !important;
    font-weight: 500 !important;
}

ul.products li.product .price ins {
    text-decoration: none !important;
    background: transparent !important;
}

/* Loop buttons (Read more, Add to cart) */
ul.products li.product .button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 1.25rem 1.5rem 1.25rem !important;
    margin-top: auto !important;
    padding: 12px 20px !important;
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all var(--transition-speed) ease !important;
    text-align: center !important;
    line-height: 1 !important;
    text-transform: none !important;
}

ul.products li.product .button:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(255, 83, 43, 0.25) !important;
}

ul.products li.product .button:active {
    transform: translateY(0) !important;
}

/* Force primary look for Add to Cart or Select Options button */
ul.products li.product .button.product_type_simple.add_to_cart_button,
ul.products li.product .button.product_type_variable,
ul.products li.product .button.read_more_button {
    background: linear-gradient(135deg, var(--primary-color), #ff7b5a) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 83, 43, 0.15) !important;
}

ul.products li.product .button.product_type_simple.add_to_cart_button:hover,
ul.products li.product .button.product_type_variable:hover,
ul.products li.product .button.read_more_button:hover {
    background: linear-gradient(135deg, #e04420, var(--primary-color)) !important;
    box-shadow: 0 6px 18px rgba(255, 83, 43, 0.3) !important;
}

/* Styling for product categories lists (if output) */
ul.products li.product.product-category a {
    text-align: center !important;
}

ul.products li.product.product-category .woocommerce-loop-category__title {
    font-family: var(--font-family) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 1.5rem 1rem !important;
    text-align: center !important;
}

ul.products li.product.product-category .woocommerce-loop-category__title mark.count {
    background: rgba(255, 83, 43, 0.08) !important;
    color: var(--primary-color) !important;
    font-size: 0.85rem !important;
    padding: 3px 8px !important;
    border-radius: 20px !important;
    margin-left: 6px !important;
    font-weight: 600 !important;
}

/* WooCommerce Pagination */
.woocommerce-pagination {
    margin-top: 4rem !important;
    text-align: center !important;
}

.woocommerce-pagination ul.page-numbers {
    display: inline-flex !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 10px !important;
}

.woocommerce-pagination ul.page-numbers li {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-pagination ul.page-numbers .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 15px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #1a1a2e !important;
    font-weight: 600 !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    transition: all var(--transition-speed) ease !important;
    text-decoration: none !important;
}

.woocommerce-pagination ul.page-numbers .page-numbers:hover {
    background: #f8fafc !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
}

.woocommerce-pagination ul.page-numbers .page-numbers.current {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(255, 83, 43, 0.25) !important;
}

/* WooCommerce Responsive Breakpoints */
@media (max-width: 1200px) {
    ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.75rem !important;
    }
}

@media (max-width: 992px) {
    body.woocommerce-page .site-main {
        padding: 40px 5%;
    }
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    .woocommerce-products-header__title.page-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 640px) {
    body.woocommerce-page .site-main {
        padding: 30px 4%;
    }
    ul.products {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .woocommerce-ordering {
        float: none !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    .woocommerce-ordering select {
        width: 100% !important;
    }
    .woocommerce-result-count {
        float: none !important;
        display: block !important;
        margin-bottom: 15px !important;
        padding: 0 !important;
    }
    ul.products li.product img {
        height: 200px !important;
    }
}

/* ==========================================================================
   WooCommerce 2-Column Sidebar Layout & Widgets
   ========================================================================== */
.shop-archive-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.shop-sidebar-column {
    width: 100%;
}

.shop-sidebar-inner {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.shop-products-column {
    width: 100%;
}

/* Sidebar Widgets */
.widget {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 2rem;
    box-sizing: border-box;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-family: var(--font-family) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 1.5rem 0 !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 2px solid #f1f5f9 !important;
    position: relative !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Fallback categories filter widget list */
.product-categories-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-categories-list li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.product-categories-list li a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    transition: all var(--transition-speed) ease !important;
    padding: 4px 0 !important;
    text-decoration: none !important;
}

.product-categories-list li a i {
    font-size: 0.75rem !important;
    color: #cbd5e1 !important;
    transition: transform var(--transition-speed) ease, color var(--transition-speed) ease !important;
    margin-right: 6px !important;
}

.product-categories-list li.current-cat a,
.product-categories-list li a:hover {
    color: var(--primary-color) !important;
}

.product-categories-list li.current-cat a i,
.product-categories-list li a:hover i {
    color: var(--primary-color) !important;
    transform: translateX(3px) !important;
}

.product-categories-list .count-badge {
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    transition: all var(--transition-speed) ease;
}

.product-categories-list li.current-cat .count-badge,
.product-categories-list li a:hover .count-badge {
    background: rgba(255, 83, 43, 0.08);
    color: var(--primary-color);
}

/* Style WooCommerce default search widget */
.widget_product_search form {
    display: flex !important;
    gap: 8px !important;
}

.widget_product_search input[type="search"] {
    font-family: var(--font-family) !important;
    font-size: 0.9rem !important;
    padding: 10px 14px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    outline: none !important;
    width: 100% !important;
    transition: all var(--transition-speed) ease !important;
}

.widget_product_search input[type="search"]:focus {
    border-color: var(--primary-color) !important;
}

.widget_product_search button {
    background: linear-gradient(135deg, var(--primary-color), #ff7b5a) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    transition: all var(--transition-speed) ease !important;
}

.widget_product_search button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255, 83, 43, 0.2) !important;
}

/* Price Filter widget styling */
.widget_price_filter .price_slider_wrapper {
    padding-top: 10px !important;
}

.widget_price_filter .ui-slider {
    background: #e2e8f0 !important;
    border-radius: 4px !important;
    height: 6px !important;
    position: relative !important;
    margin-bottom: 20px !important;
}

.widget_price_filter .ui-slider .ui-slider-range {
    background: var(--primary-color) !important;
    position: absolute !important;
    height: 100% !important;
    border-radius: 4px !important;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    background: #ffffff !important;
    border: 3px solid var(--primary-color) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    height: 18px !important;
    width: 18px !important;
    position: absolute !important;
    top: -6px !important;
    margin-left: -9px !important;
    outline: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    transition: transform var(--transition-speed) ease !important;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover {
    transform: scale(1.15) !important;
}

.widget_price_filter .price_slider_amount {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 0.9rem !important;
    color: #475569 !important;
    font-weight: 600 !important;
}

.widget_price_filter .price_slider_amount .button {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-size: 0.85rem !important;
    transition: all var(--transition-speed) ease !important;
    margin: 0 !important;
}

.widget_price_filter .price_slider_amount .button:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

/* Layered nav filters list */
.widget_layered_nav ul,
.widget_rating_filter ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.widget_layered_nav ul li,
.widget_rating_filter ul li {
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    color: #475569 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.widget_layered_nav ul li a,
.widget_rating_filter ul li a {
    color: inherit !important;
    transition: color var(--transition-speed) ease !important;
    text-decoration: none !important;
}

.widget_layered_nav ul li a:hover,
.widget_rating_filter ul li a:hover {
    color: var(--primary-color) !important;
}

/* 3 Columns for Products in Sidebar Layout */
ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
}

ul.products::before,
ul.products::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 1200px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .shop-archive-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .shop-sidebar-inner {
        position: static;
    }
    
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* Custom Tour Product Card Layout & Elements */
ul.products li.tour-product-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
}

ul.products li.tour-product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 83, 43, 0.2) !important;
}

/* Image wrapper */
.tour-card-image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 240px !important;
    overflow: hidden !important;
}

.tour-card-image-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.tour-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
    display: block !important;
}

ul.products li.tour-product-card:hover .tour-card-img {
    transform: scale(1.05) !important;
}

/* Badges Overlay */
.tour-card-badges-overlay {
    position: absolute !important;
    bottom: 15px !important;
    left: 15px !important;
    right: 15px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    z-index: 10 !important;
}

.tour-badge {
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-family: var(--font-family) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.tour-badge.difficulty {
    background-color: var(--primary-color) !important; /* Orange */
}

.tour-badge.altitude {
    background-color: rgba(18, 18, 18, 0.75) !important; /* Glassy black */
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.tour-badge.altitude i {
    font-size: 0.85rem !important;
}

/* Content Area */
.tour-card-content {
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.tour-card-subtitle {
    font-family: var(--font-family) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.tour-card-title {
    font-family: var(--font-family) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    line-height: 1.4 !important;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    flex-grow: 1 !important;
    transition: color var(--transition-speed) ease !important;
}

.tour-card-title a {
    color: inherit !important;
    text-decoration: none !important;
}

.tour-card-title a:hover {
    color: var(--primary-color) !important;
}

/* Meta list below title */
.tour-card-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-bottom: 1.25rem !important;
    font-size: 0.88rem !important;
    color: #64748b !important;
}

.tour-card-meta .meta-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 500 !important;
}

.tour-card-meta .meta-item i {
    color: var(--primary-color) !important;
    font-size: 0.95rem !important;
}

/* Divider Line */
.tour-card-divider {
    border: 0 !important;
    border-top: 1px solid #e2e8f0 !important;
    margin: 0 0 1.25rem 0 !important;
    width: 100% !important;
}

/* Footer & Link Button */
.tour-card-footer {
    margin-top: auto !important;
}

.tour-card-link {
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all var(--transition-speed) ease !important;
    text-decoration: none !important;
}

.tour-card-link i {
    transition: transform var(--transition-speed) ease !important;
    font-size: 0.85rem !important;
}

.tour-card-link:hover {
    color: var(--primary-color) !important;
}

.tour-card-link:hover i {
    transform: translateX(4px) !important;
}

/* Sidebar Tabs Box Styles */
.tour-sidebar-tabs-box {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 1.5rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    margin-bottom: 2rem !important;
}

.sidebar-tabs-headers {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 1.5rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding-bottom: 12px !important;
}

.sidebar-tab-btn {
    flex: 1 !important;
    padding: 10px 14px !important;
    font-family: var(--font-family) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.sidebar-tab-btn[data-sidebar-tab="book-now"] {
    background-color: var(--primary-color) !important; /* Orange */
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 83, 43, 0.15) !important;
}

.sidebar-tab-btn[data-sidebar-tab="book-now"]:not(.active) {
    background-color: transparent !important;
    color: #64748b !important;
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
}

.sidebar-tab-btn[data-sidebar-tab="contact-us"] {
    background-color: #1e293b !important; /* Dark Slate active */
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15) !important;
}

.sidebar-tab-btn[data-sidebar-tab="contact-us"]:not(.active) {
    background-color: transparent !important;
    color: #64748b !important;
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
}

.sidebar-tab-btn:hover {
    transform: translateY(-2px) !important;
}

/* Tab Panels & Forms */
.sidebar-tab-panel {
    display: none !important;
}

.sidebar-tab-panel.active {
    display: block !important;
    animation: sidebarFadeIn 0.4s ease !important;
}

.sidebar-booking-form,
.sidebar-contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    text-align: left !important;
}

.form-group label {
    font-family: var(--font-family) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #334155 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.form-group label i {
    color: var(--primary-color) !important;
    font-size: 0.95rem !important;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    border: 1px solid #cbd5e1 !important;
    font-family: var(--font-family) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    background-color: #f8fafc !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(255, 83, 43, 0.1) !important;
}

.btn-sidebar-submit {
    width: 100% !important;
    padding: 14px 20px !important;
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background-color: #1e293b !important; /* Dark Slate default */
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15) !important;
}

.sidebar-booking-form .btn-sidebar-submit {
    background-color: var(--primary-color) !important; /* Orange submit for checkout */
    box-shadow: 0 4px 12px rgba(255, 83, 43, 0.2) !important;
}

.btn-sidebar-submit:hover {
    transform: translateY(-2px) !important;
    opacity: 0.95 !important;
}

.btn-sidebar-submit:disabled {
    background-color: #94a3b8 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

/* Animations */
@keyframes sidebarFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Premium Flatpickr Overrides */
.flatpickr-calendar.premium-flatpickr {
    font-family: var(--font-family) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    padding: 12px !important;
    background: #ffffff !important;
    width: 310px !important;
}

.flatpickr-calendar.premium-flatpickr::before,
.flatpickr-calendar.premium-flatpickr::after {
    border-width: 0 !important; /* Remove default triangle pointer for a cleaner floating card look */
    display: none !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-months {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-month {
    height: auto !important;
    color: #1e293b !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-current-month {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    position: relative !important;
    width: auto !important;
    left: auto !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-current-month .numInputWrapper {
    width: 65px !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-current-month input.cur-year {
    font-weight: 700 !important;
    color: #1e293b !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar.premium-flatpickr .flatpickr-months .flatpickr-next-month {
    position: relative !important;
    height: 32px !important;
    width: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #f1f5f9 !important;
    color: #475569 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    top: auto !important;
    z-index: 5 !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-calendar.premium-flatpickr .flatpickr-months .flatpickr-next-month:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-months .flatpickr-prev-month i,
.flatpickr-calendar.premium-flatpickr .flatpickr-months .flatpickr-next-month i {
    font-size: 0.85rem !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-months .flatpickr-prev-month svg,
.flatpickr-calendar.premium-flatpickr .flatpickr-months .flatpickr-next-month svg {
    display: none !important; /* Hide default SVG arrows since we use FontAwesome */
}

.flatpickr-calendar.premium-flatpickr .flatpickr-innerContainer {
    width: 100% !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-rContainer {
    width: 100% !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-weekdays {
    margin-bottom: 6px !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-weekday {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-days {
    width: 100% !important;
}

.flatpickr-calendar.premium-flatpickr .dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    justify-content: space-around !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-day {
    border-radius: 50% !important;
    color: #334155 !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    height: 36px !important;
    line-height: 34px !important;
    width: 36px !important;
    margin: 2px !important;
    border: 1px solid transparent !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 36px !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-day:hover {
    background: #f1f5f9 !important;
    border-color: #f1f5f9 !important;
    color: #1e293b !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-day.today {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
    font-weight: 700 !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-day.today:hover {
    background: rgba(255, 83, 43, 0.05) !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-day.selected,
.flatpickr-calendar.premium-flatpickr .flatpickr-day.selected:hover,
.flatpickr-calendar.premium-flatpickr .flatpickr-day.selected:focus {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(255, 83, 43, 0.3) !important;
}

.flatpickr-calendar.premium-flatpickr .flatpickr-day.flatpickr-disabled,
.flatpickr-calendar.premium-flatpickr .flatpickr-day.flatpickr-disabled:hover {
    color: #cbd5e1 !important;
    background: transparent !important;
    border-color: transparent !important;
    cursor: not-allowed !important;
}

/* Pricing Summary styles inside Booking Form */
.booking-price-summary {
    background: #f8fafc !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 5px !important;
}

.booking-price-summary .price-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 0.9rem !important;
    color: #475569 !important;
}

.booking-price-summary .price-row.total-row {
    border-top: 1px dashed #cbd5e1 !important;
    padding-top: 8px !important;
    margin-top: 4px !important;
}

.booking-price-summary .price-row .price-label {
    font-weight: 600 !important;
}

.booking-price-summary .price-row .price-value {
    font-weight: 700 !important;
    color: #1e293b !important;
    font-size: 1rem !important;
}

.booking-price-summary .price-row.total-row .price-label {
    color: #1e293b !important;
    font-size: 0.95rem !important;
}

.booking-price-summary .price-row.total-row .price-value {
    color: var(--primary-color) !important;
    font-size: 1.25rem !important;
}

/* =====================================================
   ABOUT US PAGE STYLES
   ===================================================== */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.about-image-wrapper img:hover {
    transform: scale(1.03);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all var(--transition-speed) ease;
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 83, 43, 0.05);
    border-color: rgba(255, 83, 43, 0.2);
}

.about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.about-feature-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.about-quote-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    margin: 3rem 0;
}

.about-quote-text {
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-quote-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── No Incluye / Exclusions bullet list icon color ── */
.tour-bullets-exclusions .fa-circle-xmark {
    color: #ef4444;
}

/* ── Itinerary Accordion (multi-day tours) ─────────────────────────────────── */
.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.itinerary-accordion-item {
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
}

.itinerary-accordion-item:last-child {
    border-bottom: none;
}

.itinerary-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    border-left: 4px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.itinerary-accordion-trigger:hover {
    background: #fef6f4;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.itinerary-accordion-item.is-open .itinerary-accordion-trigger {
    background: #fef6f4;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.itinerary-accordion-title {
    flex: 1;
    line-height: 1.4;
}

.itinerary-accordion-icon {
    font-size: 0.85rem;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.itinerary-accordion-item.is-open .itinerary-accordion-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.itinerary-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-accordion-item.is-open .itinerary-accordion-body {
    max-height: 2000px; /* large enough for any content */
}

.itinerary-accordion-body-inner {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.75;
}

.itinerary-accordion-body-inner p {
    margin: 0 0 0.75rem 0;
}

.itinerary-accordion-body-inner p:last-child {
    margin-bottom: 0;
}

.itinerary-accordion-body-inner ul,
.itinerary-accordion-body-inner ol {
    padding-left: 1.5rem;
    margin: 0 0 0.75rem 0;
}

.itinerary-accordion-body-inner li {
    margin-bottom: 0.4rem;
}

