/*
Theme Name:   Travel O Tourism Child
Theme URI:    https://travelotourism.com
Description:  Travel O Tourism - Custom Child Theme
Author:       Superior Websoft
Author URI:   https://superiorwebsoft.com
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  travelotourism-child
*/

/* ============================================================
   IMPORT PARENT THEME
   ============================================================ */
@import url("../hello-elementor/style.css");

/* ============================================================
   CSS VARIABLES (Color Palette)
   ============================================================ */
:root {
    --primary:       #1B3A6B;   /* Navy Blue */
    --secondary:     #0E7C86;   /* Teal */
    --accent:        #D4A017;   /* Gold */
    --accent-light:  #F5A623;   /* Amber */
    --success:       #2E7D32;   /* Green */
    --danger:        #C62828;   /* Red */
    --white:         #FFFFFF;
    --light-bg:      #EAF4F7;
    --light-gold:    #FFF8E1;
    --light-green:   #E8F5E9;
    --gray-bg:       #F5F5F5;
    --text:          #1A1A2E;
    --muted:         #555555;
    --border:        #DDDDDD;
    --font-main:     'Poppins', sans-serif;
    --font-heading:  'Montserrat', sans-serif;
    --radius:        10px;
    --shadow:        0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover:  0 8px 32px rgba(0,0,0,0.15);
    --transition:    all 0.3s ease;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

ul, ol {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text);
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.section-title span {
    color: var(--secondary);
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.tot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tot-section {
    padding: 70px 0;
}

.tot-section-sm {
    padding: 40px 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

/* For buttons placed on dark/colored backgrounds (hero sections, CTA
   banners, gradient overlays) — avoids needing inline color overrides */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.8);
}

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

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

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

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.tot-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.tot-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.tot-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.tot-logo-text span {
    color: var(--secondary);
}

.tot-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.tot-nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    padding-bottom: 4px;
}

.tot-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.tot-nav-links a:hover::after,
.tot-nav-links a.active::after {
    width: 100%;
}

.tot-nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile hamburger */
.tot-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.tot-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.tot-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.tot-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tot-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(27, 58, 107, 0.65) 0%,
        rgba(14, 124, 134, 0.55) 100%
    );
}

.tot-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    color: var(--white);
}

.tot-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.tot-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tot-hero p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 650px;
    margin: 0 auto 30px;
}

.tot-hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Search bar inside hero */
.tot-hero-search {
    background: var(--white);
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 700px;
    margin: 30px auto 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.tot-hero-search input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text);
    background: transparent;
}

.tot-hero-search button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tot-hero-search button:hover {
    background: var(--secondary);
}

/* ============================================================
   CARDS
   ============================================================ */
.tot-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.tot-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.tot-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tot-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tot-card:hover .tot-card-img img {
    transform: scale(1.06);
}

/* Branded placeholder shown when a tour/hotel/blog post has no featured image */
.tot-card-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.tot-card-fallback-alt {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.tot-card-fallback-light {
    background: var(--light-bg);
}

.tot-card-fallback-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.tot-card-fallback-light .tot-card-fallback-icon {
    filter: none;
    opacity: 0.6;
}

.tot-card-excerpt {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.tot-card-readmore {
    margin-top: 8px;
}

.tot-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tot-card-body {
    padding: 20px;
}

.tot-card-title {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.tot-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tot-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tot-card-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
}

.tot-card-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--muted);
}

.tot-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    background: var(--gray-bg);
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.tot-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.tot-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ============================================================
   STATS BAR (homepage)
   ============================================================ */
.tot-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.tot-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
}

.tot-stat-label {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
}

/* ============================================================
   FEATURE CARDS (Why Choose Us)
   ============================================================ */
.tot-feature-grid {
    margin-top: 32px;
}

.tot-feature-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.tot-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.tot-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.tot-feature-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.tot-feature-desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

/* ============================================================
   CTA BANNER (homepage)
   ============================================================ */
.tot-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 20px;
    text-align: center;
}

.tot-cta-title {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 12px;
}

.tot-cta-subtitle {
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

.tot-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reusable "View All" button wrapper under a section grid */
.tot-section-cta {
    text-align: center;
    margin-top: 32px;
}

/* ============================================================
   DESTINATION CARD
   ============================================================ */
.tot-dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}

.tot-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tot-dest-card:hover img {
    transform: scale(1.08);
}

.tot-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,58,107,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.tot-dest-info h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.tot-dest-info span {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.tot-filter-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.tot-filter-bar h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-bg);
}

.tot-filter-group {
    margin-bottom: 18px;
}

.tot-filter-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tot-filter-group select,
.tot-filter-group input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.tot-filter-group select:focus,
.tot-filter-group input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(14,124,134,0.1);
}

.tot-filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tot-filter-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.tot-filter-checkboxes input[type="checkbox"] {
    accent-color: var(--secondary);
    width: 16px;
    height: 16px;
}

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.tot-enquiry-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 28px;
    color: var(--white);
}

.tot-enquiry-box h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.tot-enquiry-box p {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.tot-form-group {
    margin-bottom: 14px;
}

.tot-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
}

.tot-form-group input,
.tot-form-group select,
.tot-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    outline: none;
    transition: var(--transition);
}

.tot-form-group input::placeholder,
.tot-form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.tot-form-group input:focus,
.tot-form-group select:focus,
.tot-form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.15);
}

.tot-form-group select option {
    color: var(--text);
    background: var(--white);
}

/* Light-background variant — for forms placed on white/light cards
   (e.g. List Your Stay) rather than the dark sidebar enquiry box */
.tot-form-light .tot-form-group input,
.tot-form-light .tot-form-group select,
.tot-form-light .tot-form-group textarea,
.tot-lys-card .tot-form-group input,
.tot-lys-card .tot-form-group select,
.tot-lys-card .tot-form-group textarea {
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
}

.tot-form-light .tot-form-group input::placeholder,
.tot-form-light .tot-form-group textarea::placeholder,
.tot-lys-card .tot-form-group input::placeholder,
.tot-lys-card .tot-form-group textarea::placeholder {
    color: var(--muted);
}

.tot-form-light .tot-form-group input:focus,
.tot-form-light .tot-form-group select:focus,
.tot-form-light .tot-form-group textarea:focus,
.tot-lys-card .tot-form-group input:focus,
.tot-lys-card .tot-form-group select:focus,
.tot-lys-card .tot-form-group textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.tot-lys-card .tot-form-group label {
    color: var(--primary);
}

/* Invalid field highlight (used by main.js and list-your-stay.js) */
.tot-field-error {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px rgba(211,47,47,0.12) !important;
}

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

/* Light variant — for forms placed on white/light card backgrounds
   (e.g. contact page), since .tot-form-group defaults to dark-bg styling */
.tot-form-light .tot-form-group label {
    color: var(--muted);
}

.tot-form-light .tot-form-group input,
.tot-form-light .tot-form-group select,
.tot-form-light .tot-form-group textarea {
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--white);
}

.tot-form-light .tot-form-group input::placeholder,
.tot-form-light .tot-form-group textarea::placeholder {
    color: var(--muted);
    opacity: .7;
}

.tot-form-light .tot-form-group input:focus,
.tot-form-light .tot-form-group select:focus,
.tot-form-light .tot-form-group textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
}

.tot-form-light .tot-form-group textarea {
    resize: vertical;
}

/* ============================================================
   WHATSAPP & CALL FLOATING BUTTONS
   ============================================================ */
.tot-float-whatsapp,
.tot-float-call {
    position: fixed;
    bottom: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: var(--transition);
    text-decoration: none;
    animation: tot-pulse 2.5s infinite;
}

.tot-float-whatsapp {
    right: 24px;
    background: #25D366;
    color: var(--white);
}

.tot-float-call {
    right: 90px;
    background: var(--accent);
    color: var(--white);
}

.tot-float-whatsapp:hover,
.tot-float-call:hover {
    transform: scale(1.12);
    color: var(--white);
}

@keyframes tot-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   STAR RATING
   ============================================================ */
.tot-stars {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tot-rating-count {
    font-size: 0.8rem;
    color: var(--muted);
    margin-left: 4px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.tot-breadcrumb {
    background: var(--light-bg);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.tot-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tot-breadcrumb li {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tot-breadcrumb li a {
    color: var(--secondary);
    font-weight: 500;
}

.tot-breadcrumb li:last-child {
    color: var(--text);
    font-weight: 600;
}

/* ============================================================
   NOTICE / ALERT BOXES
   ============================================================ */
.tot-notice {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tot-notice-info {
    background: var(--light-bg);
    border-left: 4px solid var(--secondary);
    color: var(--primary);
}

.tot-notice-success {
    background: var(--light-green);
    border-left: 4px solid var(--success);
    color: var(--success);
}

.tot-notice-warning {
    background: var(--light-gold);
    border-left: 4px solid var(--accent);
    color: #7a5000;
}

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.tot-newsletter {
    background: var(--secondary);
}

.tot-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 20px;
    flex-wrap: wrap;
}

.tot-newsletter-inner h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.tot-newsletter-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin: 0;
}

.tot-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.tot-newsletter-form input[type="email"] {
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    min-width: 260px;
    font-family: var(--font-main);
    font-size: 0.92rem;
}

.tot-newsletter-form input[type="email"]:focus {
    outline: 3px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

.tot-newsletter-msg {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
}

.tot-newsletter-msg.is-error {
    color: #ffd6d6;
}

@media (max-width: 640px) {
    .tot-newsletter-inner { flex-direction: column; text-align: center; }
    .tot-newsletter-form { width: 100%; flex-direction: column; }
    .tot-newsletter-form input[type="email"] { width: 100%; min-width: 0; }
    .tot-newsletter-form button { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.tot-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    padding: 0;
}

.tot-footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.4rem;
    margin-top: 50px;
}

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

.tot-footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.tot-footer p,
.tot-footer li {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

.tot-footer a {
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
}

.tot-footer a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.tot-footer li {
    margin-bottom: 6px;
}

/* Contact info list (address / phone / email) */
.tot-footer-contact {
    margin: 16px 0;
    list-style: none;
    padding: 0;
}

.tot-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}

.tot-footer-contact a {
    padding-left: 0 !important;
}

.tot-footer-contact a:hover {
    padding-left: 0 !important;
    color: var(--accent);
}

.tot-footer-wa {
    margin-top: 14px;
}

.tot-wa-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.tot-wa-pill:hover {
    background: #1ea952;
    padding-left: 16px !important;
    color: var(--white) !important;
}

/* Social icon row */
.tot-social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.tot-social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
}

.tot-social-links a:hover {
    background: var(--accent);
    padding-left: 0;
    transform: translateY(-3px);
}

.tot-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.tot-footer-credit-link {
    color: var(--accent);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.tot-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tot-pagination a,
.tot-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
}

.tot-pagination a:hover,
.tot-pagination .current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.tot-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.tot-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-bg);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: tot-spin 0.8s linear infinite;
}

@keyframes tot-spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   STICKY ENQUIRE BAR (scroll)
   ============================================================ */
.tot-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    flex-wrap: wrap;
}

.tot-sticky-bar.is-visible {
    display: flex;
}

.tot-sticky-bar h4 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

.tot-sticky-bar-actions {
    display: flex;
    gap: 10px;
}

.tot-sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.tot-sticky-bar-title {
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 340px;
}

.tot-sticky-bar-price {
    color: var(--accent);
    font-weight: 800;
    white-space: nowrap;
}

.tot-sticky-bar-price small {
    font-weight: 400;
    font-size: 0.75rem;
}

/* ============================================================
   BLOG INDEX LAYOUT
   ============================================================ */
.tot-blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

.tot-blog-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.tot-blog-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
}

.tot-blog-card-img {
    height: 100%;
    min-height: 180px;
}

.tot-blog-card-title {
    font-size: 1.15rem;
}

.tot-blog-card-excerpt {
    margin: 10px 0 16px;
}

.tot-pagination-spaced {
    margin-top: 40px;
}

.tot-blog-sidebar {
    display: flex;
    flex-direction: column;
}

.tot-sidebar-box {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.tot-sidebar-box:nth-of-type(2) {
    background: var(--white);
    border: 1px solid var(--border);
}

.tot-sidebar-box-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.tot-sidebar-search {
    background: var(--white);
    border-radius: 8px;
    padding: 6px 6px 6px 14px;
}

.tot-sidebar-search-btn {
    border-radius: 6px;
}

.tot-sidebar-link {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.tot-sidebar-link:last-child {
    border-bottom: none;
}

.tot-sidebar-cta {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.tot-sidebar-cta-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.tot-sidebar-cta-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.tot-sidebar-cta-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.tot-search-header {
    margin-bottom: 28px;
}

.tot-search-title {
    color: var(--primary);
}

.tot-search-box-wrap {
    max-width: 600px;
    margin-bottom: 32px;
}

.tot-search-box {
    background: var(--light-bg);
    border-radius: 8px;
}

.tot-search-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tot-search-result-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}

.tot-search-result-img {
    min-height: 150px;
}

.tot-search-result-fallback {
    min-height: 150px;
}

.tot-search-type-badge {
    background: var(--light-bg);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
}

.tot-search-result-title {
    margin-top: 8px;
}

.tot-search-result-excerpt {
    margin: 8px 0 14px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.tot-404-main {
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.tot-404-icon {
    font-size: 6rem;
    margin-bottom: 16px;
}

.tot-404-code {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.tot-404-heading {
    color: var(--secondary);
    margin-bottom: 16px;
}

.tot-404-desc {
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

.tot-404-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tot-404-search-wrap {
    max-width: 480px;
    margin: 0 auto;
}

.tot-404-search-label {
    color: var(--muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.tot-404-search {
    background: var(--light-bg);
}

/* ============================================================
   TOUR/HOTEL PACKAGE SINGLE PAGE — HERO
   ============================================================ */
.tot-pkg-hero {
    position: relative;
    background: var(--primary);
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.tot-pkg-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tot-pkg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,50,.88) 0%, rgba(10,20,50,.3) 60%, transparent 100%);
}

.tot-pkg-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 32px;
    padding-top: 32px;
    width: 100%;
}

.tot-pkg-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.tot-pill {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--white);
}

.tot-pill-dest {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.tot-pill-accent { background: var(--accent); }
.tot-pill-danger { background: var(--danger); }
.tot-pill-secondary { background: var(--secondary); }

.tot-pkg-hero-title {
    color: var(--white);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
    line-height: 1.25;
}

.tot-pkg-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.tot-pkg-hero-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tot-pkg-hero-rating-badge {
    background: #FFD700;
    color: #333;
    font-size: .85rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
}

.tot-pkg-hero-rating-count {
    color: rgba(255,255,255,.8);
    font-size: .85rem;
}

.tot-pkg-hero-meta-item {
    color: rgba(255,255,255,.85);
    font-size: .85rem;
}

.tot-pkg-hero-meta-updated {
    color: rgba(255,255,255,.65);
    font-size: .78rem;
}

/* ============================================================
   TOUR/HOTEL PACKAGE SINGLE PAGE — BODY LAYOUT
   ============================================================ */
.tot-pkg-body {
    padding-top: 36px;
    padding-bottom: 60px;
}

.tot-pkg-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    align-items: start;
}

.tot-mobile-price-card {
    display: none;
    background: var(--primary);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
    color: var(--white);
}

.tot-mobile-price-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
}

.tot-mobile-price-amount span {
    font-size: .9rem;
    font-weight: 400;
    color: rgba(255,255,255,.8);
}

.tot-mobile-price-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.tot-mobile-price-actions .btn {
    flex: 1;
}

.tot-pkg-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.tot-pkg-highlight-item {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.tot-pkg-highlight-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.tot-pkg-highlight-label {
    font-size: .7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.tot-pkg-highlight-value {
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2px;
}

.tot-pkg-section {
    margin-bottom: 36px;
}

.tot-pkg-section-title {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary);
    display: inline-block;
}

.tot-pkg-short-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 500;
}

.tot-pkg-content {
    font-size: .97rem;
    line-height: 1.9;
    color: var(--text);
}

/* Inclusions / Exclusions */
.tot-incl-excl-grid {
    gap: 20px;
}

.tot-incl-box {
    background: var(--light-green);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid #a5d6a7;
}

.tot-excl-box {
    background: #fff5f5;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid #ffcdd2;
}

.tot-incl-title { color: var(--success); font-size: 1rem; margin-bottom: 14px; }
.tot-excl-title { color: var(--danger); font-size: 1rem; margin-bottom: 14px; }

.tot-incl-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tot-incl-list li {
    font-size: .9rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.tot-incl-check { color: var(--success); font-weight: 700; flex-shrink: 0; }
.tot-excl-cross { color: var(--danger); font-weight: 700; flex-shrink: 0; }

/* Day-wise Itinerary Accordion */
.tot-itin-list {
    display: flex;
    flex-direction: column;
}

.tot-itin-accordion {
    border: 1px solid var(--border);
    border-bottom: none;
    overflow: hidden;
}

.tot-itin-accordion.is-first {
    border-radius: var(--radius) var(--radius) 0 0;
}

.tot-itin-accordion.is-last {
    border-radius: 0 0 var(--radius) var(--radius);
    border-bottom: 1px solid var(--border);
}

.tot-itin-btn {
    width: 100%;
    text-align: left;
    background: var(--white);
    color: var(--text);
    border: none;
    padding: 16px 20px;
    font-family: var(--font-main);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background .2s, color .2s;
}

.tot-itin-accordion.is-open .tot-itin-btn {
    background: var(--primary);
    color: var(--white);
}

.tot-itin-day-badge {
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.tot-itin-accordion.is-open .tot-itin-day-badge {
    background: rgba(255,255,255,.2);
    color: var(--white);
}

.tot-itin-day-title {
    flex: 1;
}

.tot-itin-arrow {
    font-size: .8rem;
    transition: transform .3s;
}

.tot-itin-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    background: var(--white);
    padding: 0 20px;
}

.tot-itin-accordion.is-open .tot-itin-body {
    max-height: 600px;
    padding: 16px 20px;
}

.tot-itin-body p {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

/* Photo Gallery */
.tot-pkg-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.tot-pkg-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
}

.tot-pkg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Accordion */
.tot-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tot-faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.tot-faq-btn {
    width: 100%;
    text-align: left;
    background: var(--light-bg);
    border: none;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: .92rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.tot-faq-arrow {
    font-size: .8rem;
    flex-shrink: 0;
    transition: transform .3s;
}

.tot-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: var(--white);
}

.tot-faq-item.is-open .tot-faq-body {
    max-height: 400px;
}

.tot-faq-body p {
    padding: 14px 18px;
    margin: 0;
    font-size: .9rem;
    color: var(--text);
    line-height: 1.8;
}

/* Verified box */
.tot-verified-box {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tot-verified-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tot-verified-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 4px;
}

.tot-verified-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
}

.tot-verified-desc {
    font-size: .85rem;
    color: var(--muted);
    margin-top: 4px;
}

/* Reviews */
.tot-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary);
}

.tot-reviews-title {
    color: var(--primary);
    font-size: 1.3rem;
    margin: 0;
}

.tot-reviews-summary {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tot-reviews-avg {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.tot-reviews-stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.tot-reviews-count {
    font-size: .78rem;
    color: var(--muted);
}

.tot-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tot-review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}

.tot-review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

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

.tot-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tot-review-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text);
}

.tot-review-date {
    font-size: .78rem;
    color: var(--muted);
}

.tot-review-rating-badge {
    background: #FFF9C4;
    border: 1px solid #FFD700;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    color: #7a5000;
    flex-shrink: 0;
}

.tot-review-title {
    font-size: .92rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.tot-review-text {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.tot-reviews-cta {
    margin-top: 16px;
}

/* Related tours/hotels grid */
.tot-related-grid {
    gap: 16px;
}

.tot-related-card {
    text-decoration: none;
    display: block;
}

.tot-related-card-img {
    height: 140px;
}

.tot-related-card-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.tot-related-card-body {
    padding: 12px;
}

.tot-related-card-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 6px;
}

.tot-related-card-rating {
    font-size: .75rem;
    color: #FFD700;
}

.tot-related-card-rating span {
    color: var(--muted);
}

.tot-related-card-price {
    font-size: .92rem;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 4px;
}

/* ============================================================
   TOUR/HOTEL PACKAGE — SIDEBAR / ENQUIRY BOX
   ============================================================ */
.tot-enquiry-box-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 26px;
    margin-bottom: 20px;
    position: sticky;
    top: 80px;
}

.tot-enquiry-price-wrap {
    margin-bottom: 16px;
}

.tot-enquiry-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
}

.tot-enquiry-price-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.75);
}

.tot-soldout-notice {
    background: var(--danger);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 14px;
}

.tot-enquiry-heading {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
}

.tot-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.tot-room-suggestion {
    font-size: .8rem;
    color: var(--accent);
    margin: 4px 0 10px;
}

.tot-total-guests {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 10px;
}

.tot-btn-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.tot-enquiry-wa-alt {
    text-align: center;
    margin-top: 14px;
}

.tot-enquiry-wa-label {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
}

.tot-trust-badges {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.tot-trust-badges-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tot-trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tot-trust-badge-icon {
    font-size: 1.1rem;
}

.tot-trust-badge-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary);
}

.tot-trust-badge-desc {
    font-size: .75rem;
    color: var(--muted);
}

.tot-call-us-btn {
    margin-bottom: 12px;
}

.tot-cancellation-link {
    display: block;
    text-align: center;
    font-size: .8rem;
    color: var(--muted);
}

/* ============================================================
   HOTEL SINGLE PAGE — additional sections
   ============================================================ */
.tot-map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.tot-map-embed iframe {
    border: 0;
    display: block;
}

.tot-location-address {
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 16px;
}

.tot-checkin-grid {
    gap: 16px;
}

.tot-checkin-box {
    text-align: center;
}

.tot-checkin-emoji {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.tot-checkin-label {
    font-size: .78rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
}

.tot-checkin-label-in { color: var(--success); }
.tot-checkin-label-out { color: var(--danger); }

.tot-checkin-time {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 4px;
}

.tot-no-reviews {
    color: var(--muted);
    font-size: .9rem;
}

.tot-review-avatar-alt {
    background: var(--secondary);
}

/* Room Types */
.tot-room-types-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tot-room-type-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.tot-room-type-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tot-room-type-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tot-room-type-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.tot-room-type-beds {
    font-size: .82rem;
    color: var(--muted);
}

.tot-room-type-action {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tot-room-type-price-wrap {
    text-align: right;
}

.tot-room-type-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--secondary);
}

.tot-room-type-price-sub {
    font-size: .75rem;
    color: var(--muted);
}

/* Amenities */
.tot-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.tot-amenity-item {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid var(--border);
}

.tot-amenity-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.tot-amenity-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
}

/* ============================================================
   CAR TRANSFER SINGLE PAGE
   ============================================================ */
.tot-car-hero {
    min-height: 320px;
}

.tot-car-badge {
    display: inline-block;
    margin-bottom: 12px;
}

.tot-car-hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.tot-car-hero-price {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
}

.tot-car-layout {
    grid-template-columns: 1fr 340px;
}

.tot-route-visual {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.tot-route-points {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.tot-route-point {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.tot-route-point-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.tot-route-point-name {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.tot-route-point-label {
    font-size: .78rem;
    color: var(--muted);
}

.tot-route-line-wrap {
    flex: 2;
    text-align: center;
    padding: 0 10px;
}

.tot-route-line {
    border-top: 3px dashed var(--secondary);
    position: relative;
    margin: 12px 0;
}

.tot-route-line-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0 10px;
}

.tot-route-line-label span {
    font-size: .78rem;
    color: var(--secondary);
    font-weight: 700;
}

.tot-route-time {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 8px;
}

/* Vehicle pricing table */
.tot-table-wrap {
    overflow-x: auto;
}

.tot-vehicle-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.tot-vehicle-table thead tr {
    background: var(--primary);
    color: var(--white);
}

.tot-vehicle-table th {
    padding: 12px 16px;
    text-align: center;
}

.tot-vt-first {
    text-align: left !important;
    border-radius: 8px 0 0 0;
}

.tot-vt-last {
    border-radius: 0 8px 0 0;
}

.tot-vt-center {
    text-align: center;
}

.tot-vt-row-even { background: var(--white); }
.tot-vt-row-odd { background: var(--light-bg); }

.tot-vehicle-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.tot-vehicle-table td {
    padding: 14px 16px;
}

.tot-vt-vehicle {
    font-weight: 700;
    color: var(--primary);
}

.tot-vt-seats {
    color: var(--muted);
}

.tot-vt-price-secondary {
    color: var(--secondary);
    font-size: 1rem;
}

.tot-vt-price-primary {
    color: var(--primary);
    font-size: 1rem;
}

.tot-vt-dash {
    color: var(--muted);
}

.tot-vt-note {
    margin-top: 12px;
}

.tot-car-incl-title {
    font-size: .95rem;
    margin-bottom: 12px;
}

.tot-incl-box .tot-car-incl-title { color: var(--success); }
.tot-excl-box .tot-car-incl-title { color: var(--danger); }

.tot-car-incl-row {
    font-size: .88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.tot-related-card-img-sm {
    height: 130px;
}

.tot-car-route-label {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.tot-car-route-name {
    font-weight: 700;
    color: var(--primary);
    font-size: .88rem;
    line-height: 1.4;
}

.tot-car-route-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 8px;
}

/* Car Sidebar */
.tot-car-sidebar {
    position: sticky;
    top: 80px;
}

.tot-car-booking-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 26px;
    margin-bottom: 20px;
    color: var(--white);
}

.tot-car-booking-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.tot-car-booking-route {
    color: rgba(255,255,255,.75);
    font-size: .82rem;
    margin-bottom: 16px;
}

.tot-car-booking-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 16px;
}

.tot-car-booking-price span {
    font-size: .8rem;
    font-weight: 400;
    color: rgba(255,255,255,.7);
}

.tot-car-wa-btn {
    margin-bottom: 10px;
}

.tot-car-callback-wrap {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.tot-car-callback-label {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    text-align: center;
    margin-bottom: 10px;
}

.tot-car-dark-input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: var(--white);
    font-family: var(--font-main);
    font-size: .85rem;
    outline: none;
    margin-bottom: 8px;
}

.tot-car-dark-input::placeholder {
    color: rgba(255,255,255,.6);
}

.tot-car-callback-btn {
    font-size: .85rem;
}

.tot-car-trust-badges {
    margin-bottom: 0;
}

.tot-car-badge-item {
    margin-bottom: 10px;
}

/* ============================================================
   BLOG SINGLE POST
   ============================================================ */
.tot-blog-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.tot-blog-single-header {
    margin-bottom: 28px;
}

.tot-blog-single-meta {
    margin-bottom: 12px;
}

.tot-blog-single-title {
    color: var(--primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.tot-blog-single-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
}

.tot-blog-single-content {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text);
}

.tot-blog-single-tags {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.tot-author-box {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tot-author-avatar {
    border-radius: 50%;
}

.tot-author-name {
    font-weight: 700;
    color: var(--primary);
}

.tot-author-bio {
    font-size: 0.85rem;
    color: var(--muted);
}

.tot-related-posts {
    margin-top: 40px;
}

.tot-related-posts-title {
    color: var(--primary);
    margin-bottom: 20px;
}

.tot-related-post-img {
    height: 160px;
}

.tot-related-post-title {
    font-size: 0.9rem;
}

.tot-blog-sidebar-cta {
    text-align: center;
}

.tot-blog-sidebar-cta-title {
    color: var(--white);
    margin-bottom: 8px;
}

.tot-blog-sidebar-box {
    background: var(--white);
    border: 1px solid var(--border);
}

/* ============================================================
   ARCHIVE / FILTER PAGES (tour, hotel)
   ============================================================ */
.tot-archive-body {
    padding-top: 32px;
    padding-bottom: 60px;
}

.tot-archive-header {
    margin-bottom: 28px;
}

.tot-archive-title {
    color: var(--primary);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}

.tot-archive-count {
    color: var(--muted);
    font-size: .92rem;
}

.tot-archive-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

.tot-filter-form-sticky {
    position: sticky;
    top: 80px;
}

.tot-filter-bar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tot-filter-bar-title {
    margin: 0;
    font-size: 1rem;
}

.tot-filter-reset-btn {
    background: none;
    border: none;
    color: var(--secondary);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
}

.tot-filter-count {
    color: var(--muted);
    font-size: .78rem;
}

.tot-filter-apply-btn {
    margin-top: 8px;
}

.tot-filter-wa-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    margin-top: 16px;
}

.tot-filter-wa-label {
    font-size: .82rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 8px;
}

.tot-filter-wa-btn {
    font-size: .82rem;
}

.tot-archive-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.tot-result-count {
    font-size: .88rem;
    color: var(--muted);
}

.tot-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tot-sort-label {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 600;
}

.tot-sort-select {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: .82rem;
}

.tot-filter-loader {
    text-align: center;
    padding: 40px;
}

.tot-filter-loader-spinner {
    margin: 0 auto;
}

.tot-filter-loader-text {
    color: var(--muted);
    margin-top: 12px;
    font-size: .9rem;
}

.tot-archive-grid {
    gap: 20px;
}

.tot-archive-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.tot-tag-pill {
    font-size: .68rem;
    padding: 2px 8px;
    border-radius: 50px;
}

.tot-tag-budget {
    background: var(--light-gold);
    color: #7a5000;
    font-weight: 600;
}

.tot-tag-type {
    background: var(--light-bg);
    color: var(--muted);
}

.tot-tag-season {
    background: var(--light-green);
    color: var(--success);
}

.tot-amenity-pill {
    font-size: .65rem;
    background: var(--light-bg);
    color: var(--muted);
    padding: 2px 7px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.tot-amenity-more {
    font-size: .65rem;
    color: var(--muted);
}

.tot-archive-card-rating {
    font-size: .78rem;
    color: #FFD700;
    margin-bottom: 6px;
}

.tot-archive-card-excerpt {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 6px;
}

.tot-archive-pagination {
    margin-top: 32px;
}

.tot-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.tot-empty-state-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.tot-empty-state-title {
    color: var(--primary);
    margin-bottom: 8px;
}

.tot-empty-state-desc {
    color: var(--muted);
    margin-bottom: 20px;
}

.tot-empty-state-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   SEARCH RESULTS PAGE (tour & hotel search)
   ============================================================ */
.tot-search-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 32px;
    color: var(--white);
}

.tot-search-hero-title {
    color: var(--white);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    margin-bottom: 16px;
}

.tot-search-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 10px;
}

.tot-search-hero-input,
.tot-search-hero-select {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    color: var(--white);
    font-family: var(--font-main);
    font-size: .88rem;
    outline: none;
}

.tot-search-hero-select option {
    color: var(--text);
}

.tot-search-hero-btn {
    white-space: nowrap;
    background: var(--white);
    color: var(--primary);
}

.tot-search-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tot-search-pill {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.4);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.tot-search-pill.is-active,
.tot-search-pill:hover {
    background: rgba(255,255,255,.9);
    color: var(--primary);
}

.tot-search-results-grid {
    gap: 22px;
}

.tot-card-food-note {
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.tot-search-empty-state {
    margin-bottom: 32px;
}

.tot-interlink-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.tot-interlink-title {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.tot-interlink-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tot-interlink-pill {
    background: var(--light-bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.tot-interlink-pill:hover {
    background: var(--primary);
    color: var(--white);
}

.tot-interlink-pill-count {
    font-size: .75rem;
    opacity: .7;
}

.tot-suggestion-grid {
    gap: 16px;
}

.tot-suggestion-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.tot-suggestion-card:hover {
    background: var(--primary);
}

.tot-suggestion-card:hover .tot-suggestion-name,
.tot-suggestion-card:hover .tot-suggestion-count {
    color: var(--white);
}

.tot-suggestion-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.tot-suggestion-name {
    font-weight: 700;
    font-size: .92rem;
    color: var(--primary);
    transition: var(--transition);
}

.tot-suggestion-count {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 4px;
    transition: var(--transition);
}

/* Hotel search page specifics */
.tot-search-hero-solid {
    background: var(--primary);
}

.tot-hotel-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.tot-hotel-search-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.tot-hotel-search-btn {
    white-space: nowrap;
}

.tot-search-pill-quick {
    background: rgba(255,255,255,.15);
}

.tot-search-pill-quick:hover {
    background: rgba(255,255,255,.25);
    color: var(--white);
}

.tot-checkin-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.6);
    color: var(--white);
    font-size: .7rem;
    padding: 3px 8px;
    border-radius: 4px;
}

.tot-dest-suggestion-grid {
    gap: 18px;
}

.tot-dest-card-search {
    height: 200px;
    text-decoration: none;
    display: block;
}

.tot-dest-card-fallback {
    width: 100%;
    height: 100%;
}

/* ============================================================
   DESTINATION HUB PAGE (taxonomy-destination_hub.php)
   ============================================================ */
.tot-dest-hub-hero {
    min-height: 460px;
}

.tot-dest-hub-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    line-height: 1.2;
}

.tot-dest-hub-desc {
    color: rgba(255,255,255,.85);
    font-size: 1rem;
    max-width: 620px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.tot-dest-hub-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tot-dest-hub-stats-wrap {
    background: var(--primary);
}

.tot-dest-hub-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.1);
}

.tot-dest-hub-stat-item {
    padding: 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
}

.tot-dest-hub-stat-icon {
    font-size: 1.2rem;
}

.tot-dest-hub-stat-value {
    color: var(--accent);
    font-weight: 800;
    font-size: 1rem;
}

.tot-dest-hub-stat-label {
    color: rgba(255,255,255,.6);
    font-size: .75rem;
}

.tot-dest-hub-body {
    padding-top: 40px;
    padding-bottom: 60px;
}

.tot-dest-hub-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

.tot-season-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.tot-season-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid var(--border);
    text-align: center;
}

.tot-season-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.tot-season-name {
    font-weight: 700;
    color: var(--primary);
    font-size: .9rem;
    margin-bottom: 6px;
}

.tot-season-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.tot-season-badge {
    background: var(--light-bg);
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.tot-season-badge.is-best {
    background: var(--light-green);
    color: var(--success);
    border-color: #a5d6a7;
}

.tot-best-time-note {
    margin-top: 14px;
}

.tot-how-reach-content {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--text);
}

.tot-route-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.tot-route-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
}

.tot-route-card-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.tot-route-card-name {
    font-weight: 700;
    color: var(--primary);
    font-size: .9rem;
    margin-bottom: 6px;
}

.tot-route-card-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6;
}

.tot-dest-section-title {
    color: var(--primary);
    font-size: 1.35rem;
    margin: 0;
}

.tot-view-all-link {
    font-size: .85rem;
    color: var(--secondary);
    font-weight: 600;
}

.tot-budget-filter-pills,
.tot-budget-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.tot-budget-pill {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    background: var(--light-bg);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    font-family: var(--font-main);
}

.tot-budget-pill.is-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tot-dest-tours-grid {
    gap: 18px;
}

.tot-dest-card-title {
    font-size: .92rem;
}

.tot-card.is-hidden {
    display: none;
}

.tot-dest-car-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tot-dest-car-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}

.tot-dest-car-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.tot-dest-car-route {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.tot-dest-car-meta {
    font-size: .82rem;
    color: var(--muted);
}

.tot-dest-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}

.tot-dest-vehicle-item {
    background: var(--light-bg);
    border-radius: 6px;
    padding: 10px;
    border: 1px solid var(--border);
}

.tot-dest-vehicle-type {
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
}

.tot-dest-vehicle-seats {
    font-size: .72rem;
    color: var(--muted);
}

.tot-dest-vehicle-price {
    font-size: .9rem;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 4px;
}

.tot-dest-vehicle-price-sub {
    font-size: .68rem;
    color: var(--muted);
}

.tot-local-tips-notice {
    font-size: .95rem;
    line-height: 1.9;
}

.tot-dest-hub-sidebar {
    position: sticky;
    top: 80px;
}

.tot-dest-enquiry-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 20px;
    color: var(--white);
}

.tot-dest-enquiry-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.tot-dest-enquiry-desc {
    color: rgba(255,255,255,.75);
    font-size: .82rem;
    margin-bottom: 14px;
}

.tot-dest-enquiry-wa-btn {
    margin-bottom: 10px;
}

.tot-dest-facts-box,
.tot-dest-nearby-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

.tot-dest-nearby-box {
    margin-bottom: 0;
}

.tot-dest-sidebar-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.tot-dest-fact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.tot-dest-fact-row:last-child {
    border-bottom: none;
}

.tot-dest-fact-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.tot-dest-fact-label {
    font-size: .7rem;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.tot-dest-fact-value {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
}

.tot-dest-nearby-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: color .2s;
}

.tot-dest-nearby-link:last-child {
    border-bottom: none;
}

.tot-dest-nearby-count {
    margin-left: auto;
    font-size: .75rem;
    color: var(--muted);
}

/* ============================================================
   RESPONSIVE — TABLET (max 992px)
   ============================================================ */
@media (max-width: 992px) {
    .tot-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .tot-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .tot-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .tot-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .tot-blog-layout { grid-template-columns: 1fr; }
    .tot-blog-card { grid-template-columns: 1fr; }
    .tot-blog-card-img { min-height: 220px; }
    .tot-pkg-layout { grid-template-columns: 1fr; }
    .tot-pkg-highlights { grid-template-columns: repeat(2, 1fr); }
    .tot-enquiry-box-card { position: static; top: auto; }
    .tot-mobile-price-card { display: block; }
    .tot-car-layout { grid-template-columns: 1fr; }
    .tot-car-sidebar { position: static; top: auto; }
    .tot-blog-single-layout { grid-template-columns: 1fr; }
    .tot-archive-layout { grid-template-columns: 1fr; }
    .tot-filter-form-sticky { position: static; top: auto; }
    .tot-search-hero-row { grid-template-columns: 1fr 1fr; }
    .tot-hotel-search-row { grid-template-columns: 1fr 1fr; }
    .tot-dest-hub-layout { grid-template-columns: 1fr; }
    .tot-dest-hub-sidebar { position: static; top: auto; }
    .tot-dest-hub-stats { grid-template-columns: repeat(2, 1fr); }
    .tot-season-grid { grid-template-columns: 1fr 1fr; }
    .tot-route-cards-grid { grid-template-columns: 1fr 1fr; }

    .tot-nav-links { display: none; }
    .tot-hamburger { display: flex; }

    /* ── Universal fix: every fixed-px two-column layout page-wide ──
       (single-tour_package, single-hotel, single-car_transfer, archive pages,
       taxonomy-destination_hub, single.php, index.php, page-tour-search,
       page-hotel-search, page-contact use inline grid-template-columns with
       a fixed px sidebar e.g. "280px 1fr", "1fr 360px", "1fr 340px" etc.
       This rule forces them to stack into one column below 992px so content
       never gets squeezed into a tiny fixed column on tablets/phones. */
    main [style*="grid-template-columns"],
    .tot-container > div[style*="grid-template-columns"],
    div[style*="grid-template-columns:280px"],
    div[style*="grid-template-columns:1fr 360px"],
    div[style*="grid-template-columns:1fr 340px"],
    div[style*="grid-template-columns:1fr 320px"],
    div[style*="grid-template-columns:1fr 300px"],
    div[style*="grid-template-columns: 280px"],
    div[style*="grid-template-columns: 1fr 360px"],
    div[style*="grid-template-columns: 1fr 340px"],
    div[style*="grid-template-columns: 1fr 320px"],
    div[style*="grid-template-columns: 1fr 300px"] {
        grid-template-columns: 1fr !important;
    }

    /* Sidebars/asides inside those layouts should drop their sticky
       positioning on tablet/mobile since they're no longer beside content */
    aside[id*="filter"],
    #tot-enquiry-form,
    #tot-filter-form {
        position: static !important;
        top: auto !important;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
    .tot-grid-3,
    .tot-grid-4,
    .tot-grid-2 { grid-template-columns: 1fr; }
    .tot-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
    .tot-footer-grid { grid-template-columns: 1fr; }
    .tot-hero { min-height: 70vh; }
    .tot-hero-search { flex-direction: column; border-radius: var(--radius); padding: 16px; }
    .tot-hero-search input { width: 100%; }
    .tot-hero-search button { width: 100%; border-radius: 8px; }
    .tot-form-row { grid-template-columns: 1fr; }
    .tot-float-call { right: 86px; }
    .tot-section { padding: 45px 0; }
    .tot-enquiry-box { padding: 20px; }
    .tot-pkg-gallery { grid-template-columns: repeat(2, 1fr); }
    .tot-pkg-highlights { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .tot-incl-excl-grid { grid-template-columns: 1fr; }
    .tot-search-hero-row { grid-template-columns: 1fr; }
    .tot-hotel-search-row { grid-template-columns: 1fr; }
    .tot-hotel-search-form { grid-template-columns: 1fr; }
    .tot-route-points { flex-direction: column; }
    .tot-route-line-wrap { width: 100%; padding: 14px 0; }
    .tot-route-line { transform: rotate(90deg); width: 60px; margin: 14px auto; }
    .tot-dest-hub-stats { grid-template-columns: repeat(2, 1fr); }
    .tot-season-grid { grid-template-columns: 1fr; }
    .tot-route-cards-grid { grid-template-columns: 1fr; }

    /* List Your Stay form on mobile */
    .tot-lys-card { padding: 20px; }
    .tot-lys-progress-label { display: none; }
    .tot-lys-nav { flex-wrap: wrap; gap: 10px; }
    .tot-lys-step-indicator { order: 3; width: 100%; text-align: center; }
    .tot-lys-gallery,
    .tot-lys-review-photos { grid-template-columns: repeat(3, 1fr); }

    /* Card layouts that go image-left/text-right should stack
       into image-on-top, text-below on phones */
    .tot-search-result-card { grid-template-columns: 1fr; }
    .tot-search-result-img,
    .tot-search-result-fallback { min-height: 200px; }

    div[style*="grid-template-columns:260px"],
    div[style*="grid-template-columns:200px"],
    div[style*="grid-template-columns: 260px"],
    div[style*="grid-template-columns: 200px"] {
        grid-template-columns: 1fr !important;
    }

    /* Any remaining 2-up or 3-up inline grids (stat blocks, meta rows,
       gallery thumbnails, badge rows) collapse to 2 columns on phones
       so numbers/labels/images don't get crushed below ~150px wide */
    div[style*="grid-template-columns:repeat(4"],
    div[style*="grid-template-columns: repeat(4"],
    div[style*="grid-template-columns:repeat(3"],
    div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    div[style*="grid-template-columns:1fr 1fr 1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr 1fr 1fr"],
    div[style*="grid-template-columns:1fr 1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Extra-small phones: drop any remaining 2-up grids to 1 column */
@media (max-width: 420px) {
    div[style*="grid-template-columns:repeat(2"],
    div[style*="grid-template-columns: repeat(2"],
    div[style*="grid-template-columns:1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   MOBILE NAV (open state)
   ============================================================ */
.tot-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.tot-mobile-nav.is-open {
    display: flex;
}

.tot-mobile-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.tot-mobile-nav a:last-child {
    border-bottom: none;
}

.tot-whatsapp-link {
    color: #25D366 !important;
    font-weight: 700 !important;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.tot-contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.tot-contact-grid {
    gap: 40px;
    align-items: start;
}

.tot-contact-info-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 32px;
    color: var(--white);
    margin-bottom: 24px;
}

.tot-contact-info-title {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.tot-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tot-contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.tot-contact-info-icon {
    font-size: 1.5rem;
}

.tot-contact-info-label {
    font-weight: 700;
    margin-bottom: 4px;
}

.tot-contact-info-link {
    color: rgba(255,255,255,0.85);
}

.tot-contact-info-hours {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.tot-contact-info-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tot-contact-map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.tot-contact-map-placeholder {
    background: var(--light-bg);
    padding: 40px;
    text-align: center;
    color: var(--muted);
}

.tot-contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.tot-contact-form-title {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 1.4rem;
}

.tot-contact-form-subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ============================================================
   ALL DESTINATIONS PAGE
   ============================================================ */
.tot-all-dest-grid {
    margin-top: 32px;
}

.tot-all-dest-card {
    height: 280px;
}

.tot-all-dest-fallback {
    width: 100%;
    height: 100%;
}

.tot-all-dest-empty {
    margin-top: 32px;
}

/* ============================================================
   GENERIC STATIC PAGE (privacy policy, terms, etc.)
   ============================================================ */
.tot-generic-page-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.tot-generic-page-title {
    color: var(--primary);
    margin-bottom: 24px;
}

.tot-page-content {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text);
}

/* About Us page */
.tot-narrow-content {
    max-width: 860px;
    margin: 0 auto;
}

.tot-page-prose {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text);
}

/* ============================================================
   LIST YOUR STAY — Multi-step Public Form
   ============================================================ */
.tot-lys-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.tot-lys-header {
    text-align: center;
    margin-bottom: 32px;
}

/* Step progress bar */
.tot-lys-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    position: relative;
}

.tot-lys-progress::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

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

.tot-lys-progress-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.tot-lys-progress-label {
    font-size: 0.68rem;
    color: var(--muted);
    text-align: center;
    font-weight: 600;
}

.tot-lys-progress-step.is-active .tot-lys-progress-num {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tot-lys-progress-step.is-active .tot-lys-progress-label {
    color: var(--primary);
}

.tot-lys-progress-step.is-done .tot-lys-progress-num {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.tot-lys-save-indicator {
    text-align: center;
    font-size: 0.8rem;
    color: var(--success);
    min-height: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.tot-lys-save-indicator.is-saving {
    color: var(--muted);
}

.tot-lys-save-indicator.is-error {
    color: var(--danger);
}

/* Form card */
.tot-lys-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.tot-lys-step {
    display: none;
    border: none;
    padding: 0;
    margin: 0;
}

.tot-lys-step.is-active {
    display: block;
    animation: totLysFadeIn 0.25s ease;
}

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

.tot-lys-step-title {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.tot-lys-step-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.tot-lys-optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.78rem;
}

/* Upload zone */
.tot-lys-upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 36px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.tot-lys-upload-zone:hover,
.tot-lys-upload-zone.is-dragover {
    border-color: var(--secondary);
    background: var(--light-bg);
}

.tot-lys-upload-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.tot-lys-upload-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.tot-lys-upload-hint {
    font-size: 0.78rem;
    color: var(--muted);
}

.tot-lys-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.tot-lys-photo-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tot-lys-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tot-lys-photo-card.is-uploading {
    flex-direction: column;
    gap: 6px;
}

.tot-lys-photo-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid var(--border);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: tot-spin 0.8s linear infinite;
}

.tot-lys-photo-uploading-text {
    font-size: 0.68rem;
    color: var(--muted);
}

.tot-lys-photo-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tot-lys-photo-remove:hover {
    background: var(--danger);
}

/* Review step */
.tot-lys-review-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.tot-lys-review-row {
    font-size: 0.88rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.tot-lys-review-row strong {
    color: var(--primary);
    margin-right: 6px;
}

.tot-lys-review-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.tot-lys-review-photos .tot-lys-photo-remove {
    display: none;
}

.tot-lys-review-note {
    margin-top: 8px;
}

/* Navigation */
.tot-lys-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.tot-lys-step-indicator {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
}

/* Success screen */
.tot-lys-success {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px 30px;
    box-shadow: var(--shadow);
}

.tot-lys-success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.tot-lys-success h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.tot-lys-success p {
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.bg-light { background: var(--light-bg); }
.bg-primary { background: var(--primary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.w-100 { width: 100%; }
.tot-text-left { text-align: left; margin-bottom: 28px; }
.tot-justify-center { justify-content: center; }
