/*
Theme Name: Salas Travel Theme
Theme URI: https://example.com/
Author: Custom Developer
Author URI: https://example.com/
Description: Un tema hecho desde cero con código puro, sin Elementor ni constructores visuales, para un máximo rendimiento y personalización.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: salastravel
*/

/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-color: #b22b14;
    --primary-hover: #9c2410;
    --secondary-color: #051b3b;
    --secondary-hover: #031126;
    --text-dark: #222222;
    --text-body: #555555;
    --text-light: #888888;
    --bg-light: #fdfdfd;
    --bg-gray: #f5f7f9;
    --border-color: #e5e5e5;
    --accent-yellow: #ffb800;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 50px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ==========================================================================
   2. BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: #fff;
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* ==========================================================================
   3. HEADER
   ========================================================================== */
.site-header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.header-top {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon, .logo-icon-footer {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}

.site-title-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--secondary-color);
}

.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: var(--text-light);
}

.secondary-nav {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.secondary-nav a {
    text-decoration: none;
    color: #4a5568;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.search-field {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 14px;
    background-color: var(--bg-gray);
    outline: none;
    transition: border-color 0.3s;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.header-talk-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
}

.header-talk-btn:hover {
    border-color: var(--secondary-color);
    background-color: var(--bg-gray);
}

.header-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.header-lang .lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.header-lang .lang-item:hover,
.header-lang .lang-item.active {
    color: var(--primary-color);
}

.header-lang .lang-separator {
    color: var(--border-color);
    font-weight: 400;
}

.header-lang .fi {
    border-radius: 2px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.header-lang .lang-item:hover .fi {
    transform: scale(1.2) translateY(-1px);
}

.header-lang .lang-text {
    transition: transform 0.3s ease;
    display: inline-block;
}

.header-lang .lang-item:hover .lang-text {
    transform: translateX(3px);
}

.header-bottom {
    padding: 15px 0;
}

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

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 800px;
    text-align: left;
    width: 100%;
}

.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-subtitle strong {
    font-weight: 700;
    color: #fff;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

@keyframes pulse-btn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(189, 48, 53, 0.6); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(189, 48, 53, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(189, 48, 53, 0); }
}

.hero-actions .btn-primary {
    animation: pulse-btn 2.5s infinite;
}

@keyframes hover-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05) translateY(-3px); }
    100% { transform: scale(1.02) translateY(-2px); }
}

.hero-actions .btn-primary:hover {
    animation: hover-pop 0.3s forwards;
    box-shadow: 0 8px 20px rgba(189, 48, 53, 0.5);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    display: inline-flex;
}

.rating-avatars {
    display: flex;
}

.rating-avatars .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #333;
    margin-left: -10px;
}
.rating-avatars .avatar:first-child { margin-left: 0; }

.rating-text {
    font-size: 13px;
}

.stars {
    color: var(--accent-yellow);
    letter-spacing: 2px;
}

/* ==========================================================================
   4.5. SEARCH BAR WIDGET
   ========================================================================== */
.search-bar-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.search-bar-widget {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 10px;
}

.search-bar-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.search-field-group {
    flex: 1;
    padding: 15px 20px;
    border-right: 1px solid var(--border-color);
}

.search-field-group:nth-child(3) {
    border-right: none;
}

.search-field-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper > i:first-child {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 12px;
}

.search-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
}

.search-input {
    background: transparent;
    border: none;
    width: 100%;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-family: var(--font-body);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-light);
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: var(--text-light);
}

.search-button-group {
    padding-right: 10px;
}

.search-bar-btn {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.search-bar-btn:hover {
    background-color: var(--secondary-hover);
}

@media (max-width: 992px) {
    .search-bar-form {
        flex-direction: column;
        align-items: stretch;
    }
    .search-field-group {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .search-field-group:nth-child(3) {
        border-bottom: none;
    }
    .search-button-group {
        padding: 15px;
    }
    .search-bar-btn {
        width: 100%;
        justify-content: center;
    }
    .search-bar-wrapper {
        margin-top: -30px;
    }
}

/* ==========================================================================
   5. TRUST PARTNERS SECTION
   ========================================================================== */
.trust-section {
    padding: 80px 20px;
    text-align: center;
}

.trust-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.trust-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo-div {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    cursor: default;
    user-select: none;
}

.partner-logo-div:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.marca-peru-img {
    height: 45px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
.marca-peru-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}
.safe-travels { color: #00963f; border: 2.5px solid #00963f; border-radius: 50px; padding: 6px 16px; font-size: 15px; letter-spacing: 0; }
.viator { color: #1e8d75; font-size: 28px; letter-spacing: -1px; text-transform: lowercase; }
.tripadvisor { color: #000; font-size: 24px; letter-spacing: -0.5px; }
.tripadvisor i { color: #34e0a1; font-size: 32px; }
.trustpilot { color: #000032; font-size: 24px; letter-spacing: -0.5px; }
.trustpilot i { color: #00b67a; font-size: 28px; }
.getyourguide { color: #ff5252; font-size: 18px; letter-spacing: 0px; }

/* ==========================================================================
   6. EXPEDITIONS SECTION (TOURS)
   ========================================================================== */
.expeditions-section {
    padding: 60px 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    margin: 0;
}

.section-desc {
    max-width: 900px;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.tour-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tour-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

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

.tour-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.tour-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.tour-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
}

.tour-rating {
    color: var(--accent-yellow);
    font-size: 14px;
    margin-bottom: 20px;
}

.tour-rating span {
    color: var(--text-light);
    font-size: 12px;
    margin-left: 5px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.tour-footer .btn {
    font-size: 12px;
    padding: 8px 16px;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--secondary-color);
}
.price-amount span {
    font-size: 16px;
}

/* ==========================================================================
   7. CATEGORIES SECTION (PILLS)
   ========================================================================== */
.categories-section {
    background-color: var(--bg-gray);
    padding: 80px 0;
    margin: 60px 0;
}

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

.title-separator {
    width: 40px;
    height: 3px;
    background-color: var(--accent-yellow);
    margin: 15px auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-pill {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
}

.category-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: rgba(178, 43, 20, 0.2);
}

.category-pill img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.category-pill:hover img {
    transform: scale(1.05);
}

.cat-info {
    flex: 1;
}

.cat-info h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.cat-info span {
    display: inline-block;
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-gray);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.cat-arrow {
    margin-left: 15px;
    color: var(--border-color);
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-pill:hover .cat-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* ==========================================================================
   8. TICKET AVAILABILITY SECTION
   ========================================================================== */
.ticket-section {
    padding: 60px 20px;
}

.subtitle-badge {
    display: inline-block;
    background: rgba(178, 43, 20, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ticket-widget {
    max-width: 1003px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.04);
}

.ticket-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.ticket-circuits {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.circuit-tag {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--bg-gray);
    color: var(--text-light);
    cursor: pointer;
}
.circuit-tag.active {
    background: rgba(178, 43, 20, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.calendar-mockup {
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 { margin: 0; font-size: 18px; }
.prev-month, .next-month { cursor: pointer; color: var(--text-light); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    text-align: center;
}

.day-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day {
    padding: 15px 5px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.day:not(.empty):hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(17, 34, 64, 0.08);
    transform: translateY(-4px);
    cursor: pointer;
    z-index: 2;
}

.day.empty { border: none; background: transparent; }

.day .date {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.day .status {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status.red { background: rgba(255,59,48,0.1); color: #FF3B30; }
.status.yellow { background: rgba(255,149,0,0.15); color: #d47e00; }
.status.green { background: rgba(52,199,89,0.15); color: #28a745; }

.ticket-action {
    text-align: center;
}

.small-text {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

/* ==========================================================================
   8.5 REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    padding: 80px 20px 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.review-card {
    background-color: #f6f7f9;
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-style: italic;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    margin: 0 0 3px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.author-details span {
    font-size: 13px;
    color: var(--text-light);
}

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

/* ==========================================================================
   9. BLOG / GUIDES SECTION
   ========================================================================== */
.blog-section {
    padding: 80px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.blog-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 25px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.read-more {
    font-weight: 600;
    font-size: 14px;
}

/* Update for Blog Horizontal Cards */
.horizontal-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1300px;
    margin: 40px auto 0;
}

.blog-card-horizontal {
    display: flex;
    gap: 30px;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.blog-card-horizontal:hover {
    transform: translateY(-8px);
}

.blog-card-horizontal .blog-image {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card-horizontal:hover .blog-image {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card-horizontal .blog-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-meta-top {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.blog-card-horizontal .blog-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card-horizontal:hover .blog-title {
    /* Keep title color dark on hover */
    color: var(--text-dark);
}

.blog-card-horizontal .blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-card-horizontal .read-more {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.blog-card-horizontal .read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.blog-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
}
.btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(178, 43, 20, 0.02);
}
.blog-actions .btn {
    width: auto;
    min-width: 220px;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .horizontal-blog-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .blog-card-horizontal {
        flex-direction: column;
    }
    .blog-card-horizontal .blog-image {
        width: 100%;
        height: 200px;
    }
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    max-width: 300px;
}

.footer-heading {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.social-links a:hover {
    color: #fff;
    background: var(--primary-color);
}

/* ==========================================================================
   10. TOURS PAGE (PRODUCTS)
   ========================================================================== */
.page-hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.breadcrumbs {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

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

.breadcrumbs .sep {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
}

.page-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.page-hero-subtitle {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.tours-layout {
    display: flex;
    gap: 40px;
    padding: 60px 20px;
}

.tours-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.filter-widget {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.filter-title i {
    color: var(--secondary-color);
    font-size: 20px;
}

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

.filter-list li {
    margin-bottom: 10px;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
}

.slider-container {
    padding: 10px 0;
}

.slider {
    width: 100%;
    accent-color: var(--secondary-color);
}

.slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
}

.difficulty-buttons {
    display: flex;
    gap: 10px;
}

.diff-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.diff-btn:hover, .diff-btn.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.clear-filters-btn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    justify-content: center;
}

.tours-main {
    flex: 1;
}

.tours-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.results-count {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.sort-by select {
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    outline: none;
    font-family: var(--font-body);
}

.tours-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-numbers:hover, .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.benefits-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(178, 43, 20, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-5px);
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .tours-layout {
        flex-direction: column;
    }
    .tours-sidebar {
        width: 100%;
    }
    .tours-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   11. SINGLE PRODUCT PAGE (TOUR DETAIL)
   ========================================================================== */
.single-tour-page {
    background: #fff;
}

/* Gallery Mosaic */
.tour-gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 10px;
    padding: 10px;
    background: #fff;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
}

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

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

.item-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.item-sub1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.item-sub2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.item-tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

/* Main Container */
.tour-main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header & Meta */
.tour-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-tour-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.tour-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.meta-item i {
    color: var(--secondary-color);
    font-size: 18px;
}

.meta-item.rating i {
    color: #FFC107;
}

.tour-overview {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Booking Bar */
/* Booking Bar */
@keyframes floatingBookingBar {
    0% { transform: translate3d(0, 0px, 0); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    50% { transform: translate3d(0, -15px, 0); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
    100% { transform: translate3d(0, 0px, 0); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
}

.booking-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 60px;
    animation: floatingBookingBar 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.booking-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-val {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

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

.booking-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    gap: 10px;
}

.input-group i {
    color: var(--secondary-color);
    font-size: 20px;
}

.input-group input, .input-group select {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
}



/* Custom Dropdown (Premium) */
.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-option {
    padding: 12px 20px;
    font-size: 15px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.2s ease;
}
.custom-option:hover {
    background: #f8fafc;
    color: var(--primary-color);
    padding-left: 24px;
}
.custom-option.selected {
    background: #f8fafc;
    color: var(--primary-color);
    font-weight: 800;
}

@keyframes pulseBookingBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(158, 49, 17, 0.6); opacity: 1; }
    100% { transform: scale(1.15); box-shadow: 0 0 0 15px rgba(158, 49, 17, 0); opacity: 0; }
}

.booking-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

.booking-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: transparent;
    z-index: -1;
    animation: pulseBookingBtn 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.booking-btn:hover {
    transform: translate3d(0, -2px, 0) !important;
    box-shadow: 0 8px 20px rgba(158, 49, 17, 0.3) !important;
}

.booking-btn:hover::after {
    animation: none;
    opacity: 0;
}

/* Flatpickr Premium Overrides */
.flatpickr-calendar {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
    border: none !important;
    border-radius: var(--radius-lg) !important;
    font-family: var(--font-body) !important;
    /* Removed custom padding to prevent Saturday column from clipping */
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.flatpickr-months .flatpickr-month {
    color: var(--text-dark) !important;
    fill: var(--text-dark) !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
}
.flatpickr-current-month input.cur-year {
    font-weight: 700 !important;
}

/* Content Sections */
.tour-section {
    margin-bottom: 60px;
}

.section-heading {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--secondary-color);
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.timeline-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.timeline-list li i {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Included / Excluded */
.included-excluded-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.box {
    background: #f8fafc;
    padding: 30px;
    border-radius: var(--radius-lg);
}

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

.box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.box li i {
    font-size: 20px;
    margin-top: 2px;
}

/* Reviews */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--radius-lg);
}

.rating-big {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.rating-stars i {
    color: #FFC107;
    font-size: 18px;
}

.review-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.review-header strong {
    font-size: 16px;
    color: var(--text-dark);
}

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

.review-stars {
    margin-bottom: 10px;
}

.review-stars i {
    color: #FFC107;
    font-size: 14px;
}

.review-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Support Banner */
.support-banner {
    background: #fff;
    color: var(--text-dark);
    padding: 40px 50px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 60px auto;
    border: 1px solid var(--border-color);
    gap: 40px;
    max-width: 900px;
}

.support-content {
    flex: 1;
}

.support-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.support-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.support-banner .btn {
    flex-shrink: 0;
    padding: 16px 32px;
}

/* WooCommerce Related Products */
.related.products {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}
.related.products > h2 {
    font-family: var(--font-heading) !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    margin-bottom: 60px !important;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -1px;
}
.related.products > h2::before {
    content: 'Discover More Tours';
    display: block;
    color: #718096;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.related.products > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .tour-gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .item-main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .item-sub1 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .item-sub2 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    .item-tall {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    
    .booking-bar {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .booking-inputs {
        width: 100%;
        flex-direction: column;
    }
    .input-group, .booking-btn {
        width: 100%;
    }
    
    .included-excluded-grid {
        grid-template-columns: 1fr;
    }
    
    .support-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ==========================================================================
   12. RESPONSIVE (BASIC)
   ========================================================================== */
@media (max-width: 992px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-top-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-title-text {
        font-size: 20px;
    }
    
    .header-bottom {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        z-index: 1000;
        border-top: 1px solid var(--border-color);
    }
    
    .header-bottom.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation ul li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-navigation ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }
    .tours-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 24px;
    }
    .hero-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   BLOG PAGE STYLES (home.php)
   ========================================================================== */

/* Blog Hero Section */
.blog-page-hero {
    position: relative;
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 400px;
    color: #fff;
    margin-bottom: 40px;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-category-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.blog-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

/* Blog Filters */
.blog-filter-section {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.blog-filter-list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-filter-list li a {
    display: inline-block;
    padding: 8px 20px;
    background-color: #fff;
    color: var(--text-color);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-filter-list li a:hover,
.blog-filter-list li a.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Blog Grid */
.blog-posts-section {
    margin-bottom: 80px;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-page-card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-page-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255,255,255,0.9);
    color: var(--text-light);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.blog-page-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-page-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-page-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-page-title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.blog-page-read-more {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.blog-page-read-more:hover {
    opacity: 0.8;
}

.blog-pagination-wrapper {
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 80px;
}

.newsletter-box {
    background-color: #f8fafc;
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.newsletter-text p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

.newsletter-form-wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 450px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.newsletter-spam {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 36px;
    }
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   SINGLE POST STYLES (single.php)
   ========================================================================== */

/* Hero Section */
.single-post-hero {
    position: relative;
    padding: 150px 20px 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    min-height: 500px;
    color: #fff;
    margin-bottom: 60px;
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.85));
    z-index: 1;
}

.single-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.single-hero-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.single-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    color: #fff;
}

.single-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-hero-meta i {
    margin-right: 6px;
    color: var(--primary-color);
}

/* Content Area */
.single-post-article {
    padding-bottom: 100px;
}

/* Single Post Grid Layout */
.single-post-layout {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

/* Social Share Sidebar */
.social-share-sidebar {
    position: relative;
    height: 100%;
}

.sticky-share {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.share-title {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-dark);
    font-size: 20px;
    transition: all 0.3s ease;
}

.share-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}
.share-icon.facebook:hover { background: #1877F2; }
.share-icon.twitter:hover { background: #000000; }
.share-icon.whatsapp:hover { background: #25D366; }
.share-icon.link:hover { background: var(--primary-color); }

/* Main Content Wrapper */
.single-post-content-wrapper {
    background: #fff;
    max-width: 100%;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #f8fafc;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 60px;
    border: 1px solid #e2e8f0;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.author-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Related Posts */
.related-posts-section {
    background: #f8fafc;
    padding: 80px 0;
    margin-top: 50px;
}
.related-title {
    text-align: center;
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.single-post-content {
    font-size: 19px;
    line-height: 1.9;
    color: #475569;
    font-weight: 300;
}

.single-post-content p {
    margin-bottom: 30px;
}

/* Dropcap */
.dropcap {
    float: left;
    font-size: 60px;
    line-height: 50px;
    padding-top: 4px;
    padding-right: 15px;
    padding-left: 3px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Headings inside content */
.single-post-content h2, 
.single-post-content h3 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.single-post-content h2 {
    font-size: 32px;
}

.single-post-content h3 {
    font-size: 24px;
}

/* Blockquote */
.single-post-content blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: var(--heading-color);
    border-left: 5px solid var(--primary-color);
    padding: 30px 40px;
    margin: 50px 0;
    background-color: #f8fafc;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: relative;
}

.single-post-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: rgba(225, 112, 11, 0.15); /* Faint primary color */
    font-family: Georgia, serif;
}

/* Lists */
.single-post-content ul, 
.single-post-content ol {
    margin-bottom: 30px;
    padding-left: 30px;
}

.single-post-content li {
    margin-bottom: 10px;
}

/* Footer (Back to blog) */
.single-post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-hero-title {
        font-size: 36px;
    }
    .single-hero-meta {
        flex-direction: column;
        gap: 10px;
    }
    .single-post-hero {
        min-height: 400px;
        padding-top: 120px;
    }
    .single-post-content blockquote {
        font-size: 20px;
        padding: 20px;
    }
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sticky-share {
        position: relative;
        top: 0;
        flex-direction: row;
        justify-content: center;
    }
    .share-title {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
        margin-right: 10px;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

/* ==========================================================================
   ABOUT US PAGE STYLES (page-about.php)
   ========================================================================== */

/* Typography & Titles */
.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}
.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}
.section-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.15;
    margin-bottom: 35px;
}

/* Hero */
.about-hero {
    position: relative;
    padding: 180px 20px 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.about-hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}
.about-hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.9;
}

/* Intro Section */
.about-intro-section {
    padding: 100px 0;
    background: #fff;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-content {
    font-size: 19px;
    line-height: 1.9;
    color: #475569;
}
.rounded-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Core Values */
.core-values-section {
    padding: 80px 0 100px;
    background: #f8fafc;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.value-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 20px;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #fff;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.team-member {
    text-align: center;
    cursor: pointer;
}
.team-photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.team-member:hover .team-photo {
    filter: grayscale(0%) !important;
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}
.team-info {
    transition: transform 0.4s ease;
}
.team-member:hover .team-info {
    transform: translateY(-5px);
}
.team-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 5px;
}
.team-info p {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Responsible Tourism */
.responsible-tourism-section {
    padding: 0;
    background: #1e293b;
    color: #fff;
}
.responsible-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.responsible-image {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}
.responsible-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.responsible-content h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}
.responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.responsible-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #cbd5e1;
}
.responsible-list li i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 2px;
}

/* Manifesto */
.manifesto-section {
    position: relative;
    padding: 120px 20px;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}
.manifesto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(144, 25, 12, 0.85); /* Deep red overlay */
    z-index: 1;
}
.manifesto-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.manifesto-badge {
    display: inline-block;
    background: #fff;
    color: #90190c;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
}
.manifesto-content h2 {
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-style: italic;
}

/* Contact Info Bar */
.contact-info-bar {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.info-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}
.info-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.info-item p {
    color: #64748b;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.faq-question {
    padding: 25px 30px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: #f1f5f9;
}
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #64748b;
}
.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================================================
   CONTACT US PAGE STYLES (page-contact.php)
   ========================================================================== */

.contact-page-wrapper {
    background: #f8fafc;
}

.contact-hero-section {
    padding: 120px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column */
.contact-left-col .section-badge {
    color: var(--primary-color);
    padding-left: 0;
}
.contact-left-col .section-badge::before {
    display: none;
}
.contact-left-col .section-title {
    font-size: 52px;
    margin-bottom: 25px;
    color: #0f172a;
    font-weight: 900;
}
.contact-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 40px;
}

/* Contact Cards */
.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.contact-method-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #e2e8f0;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.bg-orange-light { background: #faede9; }
.text-orange { color: #c46850; }

.bg-blue-light { background: #f0f4f8; }
.text-blue { color: #5f7a96; }

.bg-yellow-light { background: #fdf5eb; }
.text-yellow { color: #c8955d; }

.contact-method-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--heading-color);
}
.contact-method-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.contact-arrow {
    position: absolute;
    right: 25px;
    font-size: 20px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
.contact-method-card:hover .contact-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Right Column: Map */
.map-container-styled {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.map-overlay-card {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 2;
}

.office-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.map-overlay-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 2px;
}

.map-overlay-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.btn-directions {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    color: var(--heading-color);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    transition: all 0.3s ease;
}
.btn-directions:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Newsletter Section */
.contact-newsletter-section {
    background: #f1f5f9;
    padding: 80px 0 100px;
}

.newsletter-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.newsletter-cta-inner p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-newsletter-form input {
    flex-grow: 1;
    padding: 15px 25px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-newsletter-form input:focus {
    border-color: var(--primary-color);
}

.contact-newsletter-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-newsletter-form button:hover {
    background: var(--heading-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container-styled {
        height: 400px;
    }
    .contact-newsletter-form {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .contact-left-col .section-title {
        font-size: 40px;
    }
}

/* Bottom CTA */
.bottom-cta-section {
    padding: 100px 0;
    background: #fff;
}
.bottom-cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
}
.bottom-cta-section p {
    font-size: 18px;
    color: #64748b;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-intro-grid, .responsible-grid {
        grid-template-columns: 1fr;
    }
    .responsible-image {
        min-height: 300px;
    }
    .values-grid, .team-grid, .info-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 40px;
    }
    .values-grid, .team-grid, .info-bar-grid {
        grid-template-columns: 1fr;
    }
    .manifesto-content h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   TOUR TABS STYLES (woocommerce/single-product.php)
   ========================================================================== */

.custom-tour-tabs-container {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin: 40px 0;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.tour-tabs-nav-scrollable {
    overflow-x: auto;
    border-bottom: 1px solid #e2e8f0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.tour-tabs-nav-scrollable::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.custom-tour-tabs-container ul.tour-tabs-nav {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap;
}

.custom-tour-tabs-container ul.tour-tabs-nav li.tour-tab-link {
    margin: 0 !important;
    padding: 20px 25px !important;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: flex !important;
    align-items: center;
    gap: 8px;
    list-style: none !important;
}

.tour-tab-link i {
    font-size: 20px;
}

.custom-tour-tabs-container ul.tour-tabs-nav li.tour-tab-link:hover {
    color: var(--primary-color);
    background: #f8fafc;
}

.custom-tour-tabs-container ul.tour-tabs-nav li.tour-tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: #fff;
}

.tour-tabs-content-wrapper {
    padding: 40px;
}

.custom-tour-tabs-container .tour-tab-pane {
    display: none !important;
    animation: fadeInTab 0.4s ease forwards;
}

.custom-tour-tabs-container .tour-tab-pane.active {
    display: block !important;
}

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

.tab-pane-inner-content h3 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.tab-pane-inner-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tab-pane-inner-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.8;
}

/* FAQ Accordion inside Tabs */
.tab-pane-inner-content .faq-accordion {
    max-width: 100%;
    margin-top: 0;
}

@media (max-width: 768px) {
    .tour-tab-link {
        padding: 15px 20px;
        font-size: 13px;
    }
    .tour-tabs-content-wrapper {
        padding: 25px 20px;
    }
}
}
