/*
Theme Name: Luna Tourism
Theme URI: https://tecnowolf.cloud
Author: Luna Tourism
Author URI: https://tecnowolf.cloud
Description: Custom WordPress theme for Colombia Travel tourism website.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luna-tourism
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --color-primary: #FF385C;
    --color-primary-dark: #e0314f;
    --color-dark: #1a1a2e;
    --color-dark-alt: #16213e;
    --color-text: #333;
    --color-text-light: #666;
    --color-light: #f8f9fa;
    --color-border: #e0e0e0;
    --color-white: #fff;
    --color-overlay: rgba(0, 0, 0, 0.45);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --header-height: 80px;
    --container-width: 1200px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--color-text-light); }

.section-padding {
    padding: 80px 0;
}

.section-padding-top {
    padding-top: 80px;
}

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

.bg-light {
    background: var(--color-light);
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-4 { padding: 1.5rem; }

.lead, .lead-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.divider-red {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 56, 92, 0.4);
}

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

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-submit {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.btn-link:hover {
    letter-spacing: 2px;
}

.btn-link .arrow {
    transition: transform var(--transition);
    display: inline-block;
}

.btn-link:hover .arrow {
    transform: translateX(5px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
    padding: 0;
}

.transparent-header {
    background: transparent;
}

.solid-header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled,
.solid-header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .site-title a,
.solid-header .site-title a {
    color: var(--color-dark);
}

.site-header.scrolled .main-navigation a,
.solid-header .main-navigation a {
    color: var(--color-text);
}

.site-header.scrolled .main-navigation a:hover,
.solid-header .main-navigation a:hover {
    color: var(--color-primary);
}

.site-header.scrolled .header-actions .lang-btn,
.solid-header .header-actions .lang-btn {
    color: var(--color-text);
}

.site-header.scrolled .search-toggle svg,
.solid-header .search-toggle svg {
    stroke: var(--color-text);
}

.site-header.scrolled .menu-toggle .bar,
.solid-header .menu-toggle .bar {
    background: var(--color-dark);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-branding {
    flex-shrink: 0;
}

.site-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
}

.site-title a {
    color: var(--color-white);
    text-transform: uppercase;
}

.brand-travel {
    color: var(--color-primary);
    font-weight: 400;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.lang-btn.active {
    color: var(--color-white);
}

.solid-header .lang-btn {
    color: rgba(0, 0, 0, 0.5);
}

.solid-header .lang-btn.active {
    color: var(--color-dark);
}

.language-selector .sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.solid-header .language-selector .sep,
.site-header.scrolled .language-selector .sep {
    color: rgba(0, 0, 0, 0.3);
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

.search-toggle svg {
    stroke: var(--color-white);
    transition: stroke var(--transition);
}

.search-toggle:hover svg {
    stroke: var(--color-primary);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
    border-radius: 2px;
}

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

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Body offset for solid header */
.has-solid-header {
    padding-top: var(--header-height);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero.full-screen {
    min-height: 100vh;
}

.hero.full-screen-50 {
    min-height: 50vh;
}

.hero.full-screen-60 {
    min-height: 60vh;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-category {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-cta {
    margin-top: 10px;
}

/* Hero Category Grid */
.hero-categories-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition);
    color: var(--color-white);
}

.hero-cat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cat-icon {
    font-size: 1.5rem;
}

.cat-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.cat-name {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-down-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   Masonry Grid & Destination Cards
   ========================================================================== */
.section-destinos {
    padding: 80px 0;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.grid-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.destination-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.destination-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: background var(--transition);
}

.destination-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 70%);
}

.card-content {
    color: var(--color-white);
}

.card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 5px;
}

.grid-item-large .card-title {
    font-size: 1.8rem;
}

.card-poetic {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    font-style: italic;
}

/* Masonry Item for archive/search */
.masonry-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* ==========================================================================
   Category Cards (Search/Archive)
   ========================================================================== */
.category-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.category-info {
    padding: 20px;
}

.category-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.category-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================================================
   Why Colombia Section
   ========================================================================== */
.why-colombia {
    padding: 80px 0;
}

.row-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
}

.col-content {
    flex: 1;
}

.col-info {
    flex: 1;
}

.col-form {
    flex: 1;
}

.col-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 56, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.icon-box .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.text-box h4 {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.text-box p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.rounded-shadow {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    width: 100%;
    object-fit: cover;
}

.hover-scale {
    transition: transform var(--transition);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   Grid Layouts
   ========================================================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 56, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.icon-wrapper .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition);
}

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

.social-icon .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0;
    overflow: hidden;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-white);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--color-primary-dark);
}

/* Footer Bottom */
.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.copyright .sep {
    margin: 0 10px;
}

/* ==========================================================================
   Single Pages & Posts
   ========================================================================== */
.single-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-header {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 120px 0 40px;
    text-align: center;
}

.page-header .page-title {
    color: var(--color-white);
}

.page-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.archive-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Entry Content */
.entry-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.entry-content img {
    border-radius: 12px;
    margin: 20px 0;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-summary {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.entry-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.content-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.post-navigation a {
    color: var(--color-text);
}

.post-navigation a:hover {
    color: var(--color-primary);
}

.nav-subtitle {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    font-weight: 600;
    margin-top: 5px;
}

.page-links {
    margin-top: 30px;
    text-align: center;
}

/* ==========================================================================
   Destination Gallery
   ========================================================================== */
.destination-gallery {
    margin: 40px 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ==========================================================================
   Sidebar & Widgets
   ========================================================================== */
.sidebar-widget {
    margin-bottom: 30px;
}

.sticky-widget {
    position: sticky;
    top: 100px;
}

.info-widget {
    background: var(--color-white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-light);
}

.widget-content {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-light);
    font-size: 0.9rem;
}

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

.info-text {
    color: var(--color-text-light);
}

.info-group {
    margin-bottom: 20px;
}

.transport-info {
    margin-top: 15px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.book-cta {
    margin-top: 20px;
}

/* ==========================================================================
   Map
   ========================================================================== */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    margin-top: 20px;
}

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

/* ==========================================================================
   Forms (Contact, Trip Planner)
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--color-white);
    color: var(--color-text);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.form-message {
    width: 100%;
    min-height: 150px;
    resize: vertical;
}

.form-success {
    color: #28a745;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.form-error {
    color: var(--color-primary);
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.error-message {
    color: var(--color-primary);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* ==========================================================================
   Planning Wizard
   ========================================================================== */
.planning-wizard-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
}

.progress-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-step .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.progress-step.active .step-number {
    background: var(--color-primary);
    color: var(--color-white);
}

.progress-step.completed .step-number {
    background: #28a745;
    color: var(--color-white);
}

.progress-step .step-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.step-subtitle {
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 30px;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.next-step,
.prev-step {
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid;
}

.next-step {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.next-step:hover {
    background: var(--color-primary-dark);
}

.prev-step {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.prev-step:hover {
    border-color: var(--color-text);
}

/* Option Cards (Trip Planner) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.option-card {
    border: 2px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    position: relative;
}

.option-card input[type="checkbox"],
.option-card input[type="radio"] {
    display: none !important;
}

.option-card:hover,
.option-card input[type="checkbox"]:checked ~ .option-content {
    border-color: var(--color-primary);
}

.option-card:has(input:checked) {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(255, 56, 92, 0.15);
    background: rgba(255, 56, 92, 0.03);
}

.option-card:has(input:checked) .check-icon {
    display: block;
}

.option-image {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.option-content {
    padding: 15px;
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.check-icon {
    display: none;
    color: var(--color-primary);
    margin-top: 5px;
    padding-bottom: 10px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-item .icon-box {
    width: 45px;
    height: 45px;
}

.contact-form {
    background: var(--color-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.hero.error-404 {
    text-align: center;
}

.not-found {
    text-align: center;
}

.search-container {
    max-width: 500px;
    margin: 20px auto 0;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination,
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pagination .page-numbers,
.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    color: var(--color-text);
}

.pagination .page-numbers.current,
.pagination-wrapper .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-white);
}

.pagination .page-numbers:hover:not(.current),
.pagination-wrapper .page-numbers:hover:not(.current) {
    background: var(--color-light);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

/* ==========================================================================
   Attraction Cards
   ========================================================================== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.attraction-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.attraction-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.attraction-info {
    padding: 20px;
}

.attraction-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.attraction-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Single Attraction */
.single-attraction-main {
    padding: 60px 0;
}

.single-attraction-layout {
    display: flex;
    gap: 40px;
}

.single-attraction-content {
    flex: 1;
}

.single-attraction-sidebar {
    width: 350px;
    flex-shrink: 0;
}

/* ==========================================================================
   Events & Timeline
   ========================================================================== */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.event-card .row-flex {
    gap: 0;
}

.event-card .col-image {
    max-width: 300px;
    flex-shrink: 0;
}

.event-card .col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card .col-text {
    padding: 25px;
}

.badge {
    display: inline-block;
    background: rgba(255, 56, 92, 0.1);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* ==========================================================================
   Guide Page
   ========================================================================== */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.guide-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition);
}

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

.guide-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.transport-card {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.transport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
}

.safety-tips {
    max-width: 700px;
    margin: 0 auto;
}

.safety-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.safety-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Value Items (About Page)
   ========================================================================== */
.value-item {
    text-align: center;
    padding: 25px;
}

.value-item .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
}

/* ==========================================================================
   Search Overlay (moved from inline)
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-title {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.search-overlay .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-overlay .search-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    font-size: 2rem;
    padding: 15px 0;
    outline: none;
    transition: border-color 0.3s ease;
    text-align: center;
}

.search-overlay .search-field:focus {
    border-color: var(--color-primary);
}

.search-overlay .search-submit {
    display: none;
}

.search-suggestions {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-size: 0.9rem;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    padding: 10px;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: var(--color-primary);
}

/* Shake Animation for Validation Errors */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .grid-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .row-flex {
        flex-wrap: wrap;
    }

    .col-sidebar {
        width: 100%;
    }

    .single-attraction-layout {
        flex-direction: column;
    }

    .single-attraction-sidebar {
        width: 100%;
    }

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

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

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

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

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--color-dark);
        padding: 100px 30px 30px;
        transition: right var(--transition);
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--color-white) !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-categories-grid {
        gap: 10px;
    }

    .hero-cat-item {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    /* Grid */
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .grid-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .row-flex {
        flex-direction: column;
        gap: 30px;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

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

    .col-text, .col-image, .col-content, .col-info, .col-form {
        flex: none;
        width: 100%;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-destinos {
        padding: 50px 0;
    }

    /* Footer */
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .step-actions {
        flex-direction: column;
    }

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

    /* Grids */
    .attractions-grid,
    .guide-grid,
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    /* Event Card */
    .event-card .row-flex {
        flex-direction: column;
    }

    .event-card .col-image {
        max-width: 100%;
        height: 200px;
        overflow: hidden;
    }

    /* Wizard Progress */
    .wizard-progress {
        gap: 5px;
    }

    .progress-step .step-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-categories-grid {
        flex-direction: column;
        align-items: center;
    }

    .hero-cat-item {
        width: 60%;
        flex-direction: row;
        justify-content: center;
    }

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

    .newsletter-form {
        flex-direction: column;
        border-radius: 12px;
    }

    .newsletter-form input[type="email"] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        padding: 14px;
    }

    .newsletter-form button {
        border-radius: 0 0 12px 12px;
        padding: 14px;
    }

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

    .btn-group {
        flex-direction: column;
        align-items: center;
    }
}
