/*
Theme Name: Andean Land Scapes Theme
Theme URI: https://danteoviedo.com
Author: Dante Oviedo
Author URI: https://danteoviedo.com
Description: Todos los plugins o temas de este proyecto están desarrollados por Dante Oviedo.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theandeanwaytheme
*/

/* 
 * REGLA DE DESARROLLO:
 * Todos los plugins o temas de este tema están desarrollados por Dante Oviedo.
 * Web del Autor: https://danteoviedo.com
 * Créditos: Dante Oviedo
 */

/* ==========================================================================
   Global Styles
   ========================================================================== */
*,
::before,
::after {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #179962;
    /* Forest Emerald */
    --primary-dark: #0e6440;
    /* Darker Emerald */
    --secondary-color: #f1f8f5;
    --accent-color: #d4a373;
    /* Earth Bronze */
    --text-color: #2c3e50;
    --bg-color: #ffffff;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.hero-title {
    font-family: var(--font-heading);
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base Link styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Container Global Rule */
.container,
.header-container,
.footer-container,
.site-main>.container,
.section-container {
    margin-left: 7% !important;
    margin-right: 7% !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
}

/* Credits Footer Style (As specified in the Rule) */
.author-credits {
    font-size: 0.875rem;
    color: #777;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    text-align: center;
}

.author-credits a {
    font-weight: bold;
    color: inherit;
}

/* ==========================================================================
   Floating Header (3 Positions)
   ========================================================================== */
.site-header-floating {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(23, 153, 98, 0.9);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

/* Dark header for internal pages (not home) */
body:not(.home) .site-header-floating {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 0;
    /* Slightly more compact on internal pages */
}

/* Scrolled state (for all pages including Home) */
.site-header-floating.is-scrolled {
    padding: 0.6rem 0;
    background-color: #111 !important;
    /* Definitively dark as requested */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

/* Column 1: Logo */
.header-logo-column {
    flex: 0 0 auto;
}

.header-logo-column img {
    max-height: 58px;
    /* Standard size for non-home pages */
    width: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Larger logo specifically for frontpage (30% more than 58px ~ 75px) */
body.home .header-logo-column img {
    max-height: 75px;
}

/* Reduced size on scroll (approx 30% reduction from base page sizes) */
.site-header-floating.is-scrolled .header-logo-column img {
    max-height: 40px;
}

/* On home page, 30% reduction from 75px would be 52px, 
   but we use 40px for a consistent compact header on scroll. 
   If the user specifically wants 52px for home only: */
body.home .site-header-floating.is-scrolled .header-logo-column img {
    max-height: 52px;
}

.header-logo-column:hover img {
    transform: scale(1.03);
}

.site-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Column 2: Menu */
.header-menu-column {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.header-menu-column a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* Luxury Slide-from-Center Underline */
.header-menu-column a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.header-menu-column a:hover {
    color: var(--accent-color);
}

.header-menu-column a:hover::after {
    width: 100%;
}

/* Subtle opacity fade for non-hovered items */
.header-menu-column ul:hover a:not(:hover) {
    opacity: 0.6;
}

/* Column 3: CTA */
.header-cta-column {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.header-main-cta {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background-color: var(--primary-color);
    color: #fef2db !important;
    font-weight: 800;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 0px 0px #b08253;
    animation: cta-pulse 2s infinite ease-in-out;
}

.header-cta-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-cta-column .menu-cta-container a {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background-color: var(--primary-color);
    color: #fef2db !important;
    font-weight: 800;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 0px 0px #b08253;
    animation: cta-pulse 2s infinite ease-in-out;
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 0px 0px #b08253;
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(212, 163, 115, 0.4), 0 4px 0px 0px #b08253;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 0px 0px #b08253;
    }
}

.header-main-cta:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3), 0 6px 0px 0px #eee;
    animation-play-state: paused;
}

.header-cta-column .menu-cta-container a:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3), 0 6px 0px 0px #eee;
    animation-play-state: paused;
}

@media (max-width: 992px) {
    .header-menu-column {
        display: none;
        /* Mobile menu logic would go here */
    }
}

/* ==========================================================================
   Hero Home Section (Slider 100%)
   ========================================================================== */
.home-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

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

.hero-slide.is-active .hero-bg {
    transform: scale(1.1);
    /* Slow zoom effect while active */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 7%;
    /* Aligning to the 7% rule */
    color: #fff;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: clamp(1.5rem, 4.8vw, 3rem);
    /* Increased 20% from 1.25rem/2.5rem */
    /* Responsive typography */
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-desc {
    font-size: clamp(0.6rem, 1.44vw, 0.9rem);
    /* Increased 20% from 0.5rem/0.75rem */
    margin-bottom: 40px;
    max-width: 650px;
    /* Slightly adjusted to new size */
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    padding: 0.72rem 1.8rem;
    /* Increased 20% from 0.6rem/1.5rem */
    background-color: var(--primary-color);
    color: #fef2db !important;
    font-weight: 800;
    font-size: 0.9rem;
    /* Increased 20% from 0.75rem */
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Slider Pagination (Thumbnails) */
.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
    padding: 0;
}

.hero-thumb {
    width: 108px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

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

.hero-thumb:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.hero-thumb.is-active {
    opacity: 1;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Base resets for full screen */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

/* Allow home page scroll */
.home,
.home body {
    height: auto;
    overflow-y: auto;
}

/* Ensure other pages can scroll */
body:not(.home) {
    overflow-y: auto;
    background-color: #fff;
    /* Neutral for content */
}

/* Home Content Styling */
.home-content {
    padding: 6rem 7% 2rem 7%;
    /* Keeping 7% side rule */
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Home Widget Areas & Gradient Transition */
.home-one-widget-area {
    padding: 0 7%;
    margin: 0;
    position: relative;
}

.home-two-widget-area {
    padding: 0 7%;
    margin: 0;
    position: relative;
    border-radius: 2rem 0 2rem 0;
    /* Premium asymmetrical border radius */
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-top: 1px solid rgba(212, 163, 115, 0.1);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.02);
}

.home-two-widget-area::before {
    content: '';
    position: absolute;
    top: -4rem;
    left: 0;
    width: 100%;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, rgba(212, 163, 115, 0.03));
}

.home-three-widget-area {
    padding: 0 7%;
    margin: 0;
    position: relative;
    background-color: #ffffff;
    /* Clean white contrast to the previous sections */
    border-top: 1px solid #111;
    /* Strong line for a "finish" feel or bold change */
    border-bottom: 2px solid #d4a373;
    /* Bottom underline in primary color */
}

/* Subtle separator for Home Three */
.home-three-widget-area::before {
    content: '';
    position: absolute;
    top: -4rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.home-four-widget-area {
    padding: 0 7%;
    margin: 0;
    position: relative;
    background-color: #f9f9f9;
    /* Subtle gray background */
    border-top: 1px solid #eee;
}

.home-five-widget-area {
    padding: 0 7%;
    margin: 0;
    position: relative;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

/* Single Post Specifics */
.single-post-container {
    padding-top: 120px;
    /* Space for the floating header */
    padding-bottom: 60px;
}

.taw-tour-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.taw-tour-header-flex .taw-enquire-cta {
    margin-top: 0;
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .taw-tour-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

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

/* Títulos en cabeceras clásicas (contact, general, etc.): no aplica al h1 del tour en .taw-tour-header-flex */
.entry-header .entry-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Título del tour (single): reglas completas y mayor especificidad que .entry-header .entry-title */
.taw-tour-header-flex .entry-title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 0;
    flex: 1 1 auto;
    min-width: 0;
    color: var(--text-color);
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
}

.post-thumbnail {
    margin-bottom: 30px;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

/* Handle WordPress Admin Bar offset to prevent vertical scroll */
.admin-bar .home-hero {
    height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .home-hero {
        height: calc(100vh - 46px);
    }
}

@media (max-width: 768px) {
    .home-hero {
        height: 100vh;
    }

    .hero-content {
        padding: 0 20px;
    }

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

/* ==========================================================================
   Shortcode Tabs (tabtour)
   ========================================================================== */
.taw-tabs-container {
    margin: 40px 0;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.taw-tabs-nav {
    display: flex;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.taw-tab-btn {
    padding: 0.9375rem 1.5625rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
    border-right: 1px solid #eee;
    white-space: nowrap;
}

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

.taw-tab-btn.is-active {
    background: #fff;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.taw-tabs-contents {
    padding: 1.875rem;
}

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

.taw-tab-panel.is-active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ==========================================================================
   Single Post Gallery Slider
   ========================================================================== */
.taw-gallery-main-section {
    display: flex;
    justify-content: space-between;
}

.taw-col-gallery {
    flex: 0 0 73%;
}

.taw-col-title {
    border: solid 1px;
    border-radius: 1rem;
    flex: 0 0 26%;
}

.taw-col-title .entry-title {
    margin-top: 0;
    line-height: 1.1;
    font-size: 2.5rem;
    color: var(--text-color);
}

.taw-tour-meta-container {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.taw-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 5px 0;
}

.taw-meta-row:not(:last-child)::after {
    display: none;
    /* Remove old separator */
}

.taw-meta-icon {
    flex: 0 0 32px;
    height: 32px;
    background-color: transparent !important;
    /* Clear old dark bg */
    display: flex;
    align-items: center;
    justify-content: center;
}

.taw-meta-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
    transition: transform 0.3s ease;
}

.taw-meta-row:hover .taw-meta-icon svg {
    transform: scale(1.2);
}

.taw-meta-info {
    display: flex;
    flex-direction: column;
}

.taw-meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.taw-meta-value {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .taw-tour-meta-container {
        grid-template-columns: 1fr;
    }
}

.taw-price-row {
    margin-top: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.taw-price-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.taw-price-row .taw-meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.taw-price-row .taw-meta-label {
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.taw-price-row .taw-meta-value {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.taw-price-row .taw-meta-value::after {
    content: 'per person';
    display: block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 5px;
}

.taw-enquire-cta {
    display: inline-block;
    width: auto;
    text-align: center;
    background-color: var(--primary-color);
    color: #fef2db !important;
    padding: 0.8rem 1.8rem;
    margin-top: 0;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.taw-enquire-cta:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.taw-single-gallery-wrapper {
    display: flex;
    gap: 20px;
}

.taw-main-slider {
    flex: 1;
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    height: 35rem;
}

.taw-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.taw-slide.is-active {
    opacity: 1;
    visibility: visible;
}

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

.taw-slider-nav {
    width: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 35rem;
}

.taw-nav-thumb {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    height: calc((35rem - 40px) / 5);
}

.taw-nav-thumb:hover,
.taw-nav-thumb.is-active {
    opacity: 1;
    border-color: var(--primary-color);
}

.taw-nav-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rest of gallery grid (6-16) */
.taw-content-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.taw-grid-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .taw-gallery-main-section {
        flex-direction: column;
        gap: 30px;
    }

    .taw-col-gallery,
    .taw-col-title {
        flex: 0 0 100%;
        width: 100%;
    }

    .taw-single-gallery-wrapper {
        flex-direction: column;
    }

    .taw-main-slider {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .taw-slider-nav {
        width: 100%;
        height: auto;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .taw-nav-thumb {
        width: 80px;
        height: 60px;
        flex-shrink: 0;
    }

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

    .taw-single-gallery-wrapper {
        gap: 10px;
    }

    /* Single post font reductions for mobile */
    .taw-col-title .entry-title,
    .entry-header .entry-title,
    .taw-tour-header-flex .entry-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }

    .taw-tour-header-flex .entry-title {
        margin-bottom: 0;
    }

    .taw-meta-value {
        font-size: 1.1rem !important;
    }

    .taw-price-row .taw-meta-value {
        font-size: 2rem !important;
    }

    .taw-price-row .taw-meta-value::after {
        font-size: 0.7rem;
    }

    .taw-enquire-cta {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .entry-content {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Content Photo Shortcodes Styling
   ========================================================================== */
.taw-content-photo {
    margin-bottom: 2rem;
    overflow: hidden;
}

.taw-content-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.taw-photo-left {
    float: left;
    margin-right: 2rem;
}

.taw-photo-right {
    float: right;
    margin-left: 2rem;
}

/* Clear floats in content */
.entry-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 600px) {

    .taw-photo-left,
    .taw-photo-right {
        float: none;
        margin: 0 0 1.5rem 0;
        width: 100% !important;
    }
}

/* ==========================================================================
   Category Archive Styling
   ========================================================================== */

.container-archive-page {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.taw-category-info-card {
    background-color: #f9f7f2 !important;
    border-left: 5px solid var(--primary-color) !important;
    display: flex;
    align-items: center;
    border: none;
}

.taw-category-info-card .taw-card-content {
    padding: 2.5rem !important;
}

.category-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.category-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Archive Grid */

/* Pagination */
.taw-pagination {
    margin: 4rem 0;
    text-align: center;
}

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

.taw-pagination .page-numbers {
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #444;
    font-weight: 600;
    transition: all 0.3s ease;
}

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



/* ==========================================================================
   General Template Styling
   ========================================================================== */
.general-template-main {
    padding-top: 120px;
    /* Space for fixed header */
    padding-bottom: 60px;
    background-color: #fff;
}

.general-template-container {
    width: 100%;
    padding: 0 7%;
    box-sizing: border-box;
}

.general-template-container .entry-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.general-template-container .entry-content {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */
.site-footer {
    position: relative;
    padding: 100px 7% 40px 7%;
    color: #fff;
    background-color: #1a1a1a;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg-footer.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 25% 15% 15% 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-widget-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-widget {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widget a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.author-credits {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.author-credits a {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 992px) {}

.no-scroll {
    overflow: hidden !important;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 600px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .site-footer {
        padding: 60px 20px 30px 20px;
    }

    .footer-widget-title {
        margin-bottom: 20px;
    }

    .footer-widget ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
        z-index: 100000;
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .mobile-menu-btn:active {
        transform: scale(0.9);
    }
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #fef2db;
    border-radius: 2px;
}

.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
}

.mobile-panel.is-active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-panel.is-active .mobile-panel-overlay {
    opacity: 1;
}

.mobile-panel-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--primary-color);
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    color: #fef2db;
    text-align: left;
}

.mobile-panel.is-active .mobile-panel-content {
    transform: translateX(-320px);
}

.mobile-panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fef2db;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.responsive-menu-area {
    width: 100%;
}

.responsive-menu-title {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.2);
    padding-bottom: 10px;
}

/* ==========================================================================
   Contact Template Styling
   ========================================================================== */
.contact-template-main {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #fff;
}

.contact-template-container {
    width: 100%;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-col-content {
    flex: 0 0 55%;
}

.contact-col-form {
    flex: 1;
    background-color: #f9f7f2;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.contact-form-title {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 800;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #8b857a;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0dcd0;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fef2db !important;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #1a1a1a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-col-content,
    .contact-col-form {
        flex: 0 0 100%;
        width: 100%;
    }

    .contact-col-form {
        padding: 2rem;
    }
}

.responsive-menu-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsive-menu-area li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.responsive-menu-area li:last-child {
    border-bottom: none;
}

.responsive-menu-area a {
    display: block;
    padding: 10px 0;
    color: #fef2db;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.responsive-menu-area a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

/* Submenu styling if exists */
.responsive-menu-area .sub-menu {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.responsive-menu-area .sub-menu a {
    padding: 6px 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ==========================================================================
   Enquiry Modal Lightbox
   ========================================================================== */
.taw-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.taw-modal.is-active {
    visibility: visible;
    opacity: 1;
}

.taw-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.taw-modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: #fff;
    border-radius: 15px;
    overflow-y: auto;
    z-index: 100002;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.taw-modal.is-active .taw-modal-content {
    transform: translateY(0);
}

.taw-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    line-height: 1;
    z-index: 101;
}

.taw-modal-body {
    padding: 0 3rem 3rem 3rem;
    text-align: left;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.modal-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.taw-enquiry-form .form-group {
    margin-bottom: 20px;
}

.taw-enquiry-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8b857a;
    margin-bottom: 8px;
}

.taw-enquiry-form input,
.taw-enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0dcd0;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background: #fff;
    color: #333;
}

.taw-enquiry-form input:focus,
.taw-enquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.enquiry-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: #1a1a1a !important;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-submit-btn:hover {
    background-color: #1a1a1a;
    color: #fff !important;
    transform: scale(1.02);
}

@media (max-width: 600px) {
    .taw-modal-body {
        padding: 2.5rem 1.5rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   Contact Page Specifics
   ========================================================================== */
.contact-template-main {
    padding: 120px 0 60px;
}

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

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.contact-form-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 56, 65, 0.1);
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: #fef2db;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.contact-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 1;
}

.btn-loader {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Success Elements for Modal */
.success-icon {
    width: 80px;
    height: 80px;
    background: #e9f7ef;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.modal-close-btn {
    background: var(--primary-color);
    color: #fef2db;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.modal-close-btn:hover {
    background: #1a1a1a;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Archive & Category Pages
   ========================================================================== */
.container-archive-page {
    padding-top: 160px;
    padding-bottom: 80px;
}

.taw-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.taw-archive-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.taw-archive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.taw-category-info-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.taw-category-info-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 163, 115, 0.1);
}

.taw-category-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.taw-category-info-card:hover::before {
    opacity: 0.5;
}

.taw-category-info-card .taw-card-content {
    justify-content: center;
    align-items: center;
    padding: 0;
}

.taw-category-info-card .category-title {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.taw-category-info-card .category-description {
    font-size: 1.1rem;
    color: #f1f8f5;
    opacity: 0.9;
    line-height: 1.6;
}

.taw-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

.taw-placeholder-img {
    width: 100%;
    height: 100%;
    background-color: #eee;
}

.taw-archive-card:hover .taw-card-image img {
    transform: scale(1.1);
}

.taw-card-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.taw-card-location {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.taw-card-title {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    line-height: 1.25;
    color: var(--primary-color);
}

.taw-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.taw-card-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #777;
}

.taw-card-duration svg {
    stroke: var(--accent-color);
}

.taw-card-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.taw-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.taw-pagination .nav-links {
    display: flex;
    gap: 10px;
}

.taw-pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .container-archive-page {
        padding-top: 120px;
    }

    .taw-archive-grid {
        grid-template-columns: 1fr;
    }

    .taw-category-info-card {
        padding: 30px 20px;
    }

    .taw-category-info-card .category-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Home Page Widget Areas
   ========================================================================== */
.home-content,
.home-one-widget-area,
.home-two-widget-area,
.home-three-widget-area,
.home-four-widget-area,
.home-five-widget-area {
    padding: 80px 7%;
}

.home-two-widget-area {
    background: linear-gradient(135deg, #0b1a17 0%, #0e4d3a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.home-two-widget-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.15;
    pointer-events: none;
}