/* Open Travel Guide - Topic Page Styles */
/* Modern, Sophisticated, Premium Travel Design */
/* ALL CLASSES PREFIXED WITH tp- TO AVOID CONFLICTS */

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

:root {
    /* Primary Colors - Blue Gradient System */
    --tp-primary-blue: #1a56a8;
    --tp-blue-600: #2563eb;
    --tp-blue-500: #3b82f6;
    --tp-blue-400: #60a5fa;
    --tp-cyan-600: #0891b2;
    --tp-cyan-500: #06b6d4;
    --tp-cyan-400: #22d3ee;
    --tp-teal-400: #2dd4bf;

    /* Dark Theme Colors */
    --tp-slate-900: #0f172a;
    --tp-slate-800: #1e293b;
    --tp-gray-900: #111827;
    --tp-blue-900: #1e3a5f;

    /* Neutral Colors */
    --tp-white: #ffffff;
    --tp-gray-50: #f9fafb;
    --tp-gray-100: #f3f4f6;
    --tp-gray-200: #e5e7eb;
    --tp-gray-300: #d1d5db;
    --tp-gray-400: #9ca3af;
    --tp-gray-500: #6b7280;
    --tp-gray-600: #4b5563;
    --tp-gray-700: #374151;
    --tp-gray-800: #1f2937;

    /* Accent Colors */
    --tp-green-400: #4ade80;
    --tp-green-500: #22c55e;
    --tp-yellow-400: #facc15;

    /* Shadows */
    --tp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tp-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tp-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tp-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tp-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tp-shadow-blue: 0 20px 40px -10px rgba(59, 130, 246, 0.3);
    --tp-shadow-blue-glow: 0 0 40px rgba(59, 130, 246, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--tp-gray-800);
    background: var(--tp-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reading Progress Bar */
.tp-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--tp-blue-500), var(--tp-cyan-400), var(--tp-teal-400));
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* ============================================
   HEADER - Clean & Sophisticated
   ============================================ */
.tp-header {
    background: var(--tp-white);
    border-bottom: 1px solid var(--tp-gray-100);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--tp-shadow-sm);
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
}

.tp-nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.tp-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-gray-900);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.tp-nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.tp-nav-links a {
    color: var(--tp-gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.tp-nav-links a:hover {
    color: var(--tp-blue-600);
}

.tp-nav-cta {
    background: linear-gradient(135deg, var(--tp-blue-600), var(--tp-cyan-600));
    color: var(--tp-white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--tp-shadow-md);
}

.tp-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-lg), 0 0 30px rgba(59, 130, 246, 0.4);
}

/* ============================================
   MAIN LAYOUT - Three Column Grid
   ============================================ */
.tp-page-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr 320px;
    gap: 48px;
    padding: 48px 32px 100px;
}

/* ============================================
   LEFT SIDEBAR - Navigation Panel
   ============================================ */
.tp-nav-panel {
    position: sticky;
    top: 112px;
    height: fit-content;
}

.tp-nav-box {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--tp-shadow);
}

.tp-nav-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--tp-gray-500);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tp-gray-200);
}

.tp-nav-links-sidebar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-nav-item {
    margin-bottom: 4px;
}

.tp-nav-anchor {
    display: block;
    padding: 10px 14px;
    color: var(--tp-gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.tp-nav-anchor:hover {
    background: var(--tp-gray-50);
    color: var(--tp-blue-600);
}

.tp-nav-anchor.tp-current {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--tp-blue-600);
    font-weight: 600;
    border-color: rgba(59, 130, 246, 0.2);
}

.tp-info-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--tp-gray-200);
}

.tp-info-line {
    font-size: 13px;
    color: var(--tp-gray-500);
    margin-bottom: 8px;
    padding: 10px 12px;
    background: var(--tp-gray-50);
    border-radius: 8px;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.tp-main-content {
    max-width: 780px;
}

/* Breadcrumbs */
.tp-breadcrumbs {
    font-size: 14px;
    color: var(--tp-gray-500);
    margin-bottom: 32px;
}

.tp-breadcrumbs a {
    color: var(--tp-blue-600);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.tp-breadcrumbs a:hover {
    color: var(--tp-cyan-600);
}

.tp-breadcrumbs span {
    margin: 0 10px;
    color: var(--tp-gray-400);
}

/* Content Header */
.tp-content-header {
    margin-bottom: 56px;
}

.tp-content-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--tp-blue-600), var(--tp-cyan-600));
    color: var(--tp-white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--tp-shadow-md);
}

.tp-content-header h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--tp-gray-900);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.tp-content-subtitle {
    font-size: 20px;
    color: var(--tp-gray-500);
    line-height: 1.6;
    font-weight: 400;
}

/* Intro Text */
.tp-intro-text {
    margin-bottom: 64px;
}

.tp-intro-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--tp-gray-700);
}

/* Sections */
.tp-main-content section {
    margin-bottom: 72px;
    scroll-margin-top: 100px;
}

.tp-main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    scroll-margin-top: 100px;
}

.tp-main-content h2 + p {
    color: var(--tp-gray-500);
    font-size: 17px;
    margin-bottom: 32px;
}

.tp-main-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--tp-gray-900);
    margin: 48px 0 20px;
    letter-spacing: -0.3px;
}

.tp-main-content p {
    margin-bottom: 16px;
    color: var(--tp-gray-700);
}

/* ============================================
   CONTENT CARDS - Modern & Elevated
   ============================================ */
.tp-content-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

.tp-content-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow: var(--tp-shadow);
}

.tp-content-card:hover {
    border-color: transparent;
    box-shadow: var(--tp-shadow-xl), 0 20px 40px -15px rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
}

.tp-card-badge {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 12px;
    font-weight: 700;
    color: var(--tp-white);
    background: linear-gradient(135deg, var(--tp-blue-500), var(--tp-cyan-500));
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 14px;
    padding-right: 80px;
    line-height: 1.3;
}

.tp-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tp-gray-100);
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--tp-gray-500);
}

.tp-card-meta span {
    font-weight: 500;
}

.tp-card-description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--tp-gray-600);
    margin-bottom: 16px;
}

.tp-card-description p {
    margin-bottom: 12px;
}

.tp-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tp-tag {
    background: var(--tp-gray-100);
    color: var(--tp-gray-700);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.tp-tag:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--tp-blue-600);
}

.tp-card-tip {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(74, 222, 128, 0.08));
    border-left: 3px solid var(--tp-green-500);
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.65;
    margin-top: 20px;
}

.tp-card-tip strong {
    color: var(--tp-gray-900);
    font-weight: 600;
}

/* ============================================
   SAFETY CARDS - Severity-Based Styling
   ============================================ */
.tp-safety-section {
    margin-top: 32px;
}

.tp-safety-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.tp-safety-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-safety-card:hover {
    transform: translateX(4px);
}

.tp-severity-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tp-safety-text {
    font-size: 15px;
    line-height: 1.6;
    color: inherit;
    margin: 0;
}

/* Critical Severity - Red */
.tp-severity-critical {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 4px solid #dc2626;
    color: #991b1b;
}

.tp-severity-critical .tp-severity-badge {
    background: #dc2626;
    color: white;
}

/* High Severity - Orange/Yellow */
.tp-severity-high {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.tp-severity-high .tp-severity-badge {
    background: #f59e0b;
    color: white;
}

/* Medium Severity - Blue */
.tp-severity-medium {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.tp-severity-medium .tp-severity-badge {
    background: #3b82f6;
    color: white;
}

/* Low Severity - Green */
.tp-severity-low {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-left: 4px solid #22c55e;
    color: #166534;
}

.tp-severity-low .tp-severity-badge {
    background: #22c55e;
    color: white;
}

/* Info Severity - Gray */
.tp-severity-info {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-left: 4px solid #6b7280;
    color: #374151;
}

.tp-severity-info .tp-severity-badge {
    background: #6b7280;
    color: white;
}

/* Warning Text */
.tp-warning-text {
    color: #dc2626;
    font-weight: 600;
}

/* ============================================
   HOTEL BADGE VARIANTS
   ============================================ */
.tp-badge-luxury {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.tp-badge-mid-range {
    background: linear-gradient(135deg, var(--tp-blue-500), var(--tp-cyan-500));
}

.tp-badge-budget {
    background: linear-gradient(135deg, var(--tp-green-500), var(--tp-teal-400));
}

/* Rating Display */
.tp-rating {
    color: #f59e0b;
    font-weight: 600;
}

/* Price Range */
.tp-price-range {
    color: var(--tp-blue-600);
    font-weight: 600;
}

/* Cuisine Types */
.tp-cuisine-types {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--tp-gray-200);
}

.tp-cuisine-types h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--tp-gray-700);
    margin-bottom: 16px;
}

/* Restaurant Card */
.tp-restaurant-card {
    cursor: default;
}

.tp-restaurant-card:hover {
    transform: translateY(-2px);
}

/* ============================================
   CONTENT LISTS - Refined Styling
   ============================================ */
.tp-content-list {
    margin-bottom: 40px;
}

.tp-content-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.tp-content-list li {
    padding: 20px 24px;
    background: var(--tp-gray-50);
    border-radius: 14px;
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--tp-blue-500), var(--tp-cyan-500)) 1;
    font-size: 16px;
    line-height: 1.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-content-list li:hover {
    background: var(--tp-white);
    box-shadow: var(--tp-shadow-md);
    transform: translateX(4px);
}

.tp-content-list li strong {
    color: var(--tp-gray-900);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

/* ============================================
   FINAL CTA - Premium Dark Gradient
   ============================================ */
.tp-final-cta {
    background: linear-gradient(135deg, var(--tp-blue-900) 0%, var(--tp-slate-800) 50%, var(--tp-slate-900) 100%);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    color: var(--tp-white);
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.tp-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.tp-final-cta h3 {
    color: var(--tp-white);
    font-size: 32px;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.tp-final-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tp-final-cta .tp-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--tp-blue-500), var(--tp-cyan-500));
    color: var(--tp-white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: var(--tp-shadow-lg);
}

.tp-final-cta .tp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--tp-shadow-xl), var(--tp-shadow-blue-glow);
}

/* ============================================
   RIGHT SIDEBAR - CTA Cards
   ============================================ */
.tp-cta-sidebar {
    position: sticky;
    top: 112px;
    height: fit-content;
}

.tp-cta-card {
    background: linear-gradient(135deg, var(--tp-blue-900) 0%, var(--tp-slate-800) 50%, var(--tp-slate-900) 100%);
    border-radius: 20px;
    padding: 32px;
    color: var(--tp-white);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--tp-shadow-lg);
}

.tp-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.tp-cta-card h3 {
    font-size: 22px;
    margin: 0 0 12px 0;
    color: var(--tp-white);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.tp-cta-card p {
    font-size: 15px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.tp-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--tp-blue-500), var(--tp-cyan-500));
    color: var(--tp-white);
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: var(--tp-shadow-md);
}

.tp-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-lg), 0 0 30px rgba(59, 130, 246, 0.4);
}

/* Progress CTA */
.tp-progress-cta {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 24px;
    display: none;
    box-shadow: var(--tp-shadow);
    margin-bottom: 20px;
}

.tp-progress-cta.tp-show {
    display: block;
    animation: tp-slideUp 0.4s ease;
}

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

.tp-progress-cta h4 {
    font-size: 17px;
    color: var(--tp-gray-900);
    margin-bottom: 8px;
    font-weight: 700;
}

.tp-progress-cta p {
    font-size: 14px;
    color: var(--tp-gray-500);
    margin-bottom: 16px;
}

.tp-progress-cta .tp-cta-button {
    background: linear-gradient(135deg, var(--tp-green-500), var(--tp-teal-400));
}

.tp-progress-cta .tp-cta-button:hover {
    box-shadow: var(--tp-shadow-lg), 0 0 30px rgba(34, 197, 94, 0.4);
}

/* Related Topics Box */
.tp-related-box {
    background: var(--tp-gray-50);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.tp-related-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-gray-700);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--tp-gray-200);
}

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

.tp-related-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--tp-gray-100);
}

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

.tp-related-list a {
    color: var(--tp-gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.tp-related-list a:hover {
    color: var(--tp-blue-600);
}

/* Quick Facts Box */
.tp-facts-box {
    background: var(--tp-gray-50);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.tp-facts-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-gray-700);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--tp-gray-200);
}

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

.tp-facts-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--tp-gray-100);
    font-size: 13px;
    color: var(--tp-gray-600);
}

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

/* ============================================
   SAVE BUTTON - Floating Action
   ============================================ */
.tp-save-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(135deg, var(--tp-blue-600), var(--tp-cyan-600));
    color: var(--tp-white);
    padding: 16px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: var(--tp-shadow-lg), 0 0 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    font-family: inherit;
}

.tp-save-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--tp-shadow-xl), var(--tp-shadow-blue-glow);
}

.tp-save-button.tp-saved {
    background: linear-gradient(135deg, var(--tp-green-500), var(--tp-teal-400));
    box-shadow: var(--tp-shadow-lg), 0 0 30px rgba(34, 197, 94, 0.3);
}

/* ============================================
   FOOTER - Dark & Sophisticated
   ============================================ */
.tp-footer {
    background: linear-gradient(135deg, var(--tp-gray-900), var(--tp-slate-900));
    color: var(--tp-white);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.tp-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.tp-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.tp-footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--tp-white);
}

.tp-footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 15px;
}

.tp-footer-section ul {
    list-style: none;
    padding: 0;
}

.tp-footer-section ul li {
    margin-bottom: 12px;
}

.tp-footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.tp-footer-section a:hover {
    color: var(--tp-white);
}

.tp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .tp-page-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 24px 20px 140px;
    }

    .tp-nav-panel {
        display: none;
    }

    .tp-cta-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        background: var(--tp-white);
        border-top: 1px solid var(--tp-gray-200);
        padding: 16px;
        z-index: 98;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        border-radius: 20px 20px 0 0;
    }

    .tp-cta-card {
        margin: 0;
        padding: 20px;
        border-radius: 16px;
    }

    .tp-cta-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .tp-cta-card p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .tp-cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }

    .tp-progress-cta,
    .tp-related-box,
    .tp-facts-box {
        display: none !important;
    }

    .tp-save-button {
        bottom: 110px;
    }

    .tp-content-header h1 {
        font-size: 38px;
    }

    .tp-main-content h2 {
        font-size: 28px;
    }

    .tp-nav-links {
        display: none;
    }

    .tp-final-cta {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .tp-content-card {
        padding: 24px;
        border-radius: 16px;
    }

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

@media (max-width: 640px) {
    .tp-content-header h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .tp-main-content h2 {
        font-size: 24px;
    }

    .tp-content-subtitle {
        font-size: 17px;
    }

    .tp-card-title {
        font-size: 19px;
        padding-right: 0;
    }

    .tp-card-badge {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
    }

    .tp-content-header {
        margin-bottom: 40px;
    }

    .tp-content-badge {
        padding: 6px 14px;
        font-size: 11px;
    }

    .tp-nav {
        padding: 0 16px;
        height: 64px;
    }

    .tp-page-container {
        padding: 20px 16px 140px;
    }

    .tp-footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   INLINE CTA - Mid-content call-to-action
   ============================================ */
.tp-inline-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--tp-gray-50), var(--tp-white));
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px 32px;
    margin: 48px 0;
    box-shadow: var(--tp-shadow);
    transition: all 0.3s;
}

.tp-inline-cta:hover {
    box-shadow: var(--tp-shadow-lg);
    transform: translateY(-2px);
}

.tp-cta-icon {
    font-size: 48px;
    flex-shrink: 0;
    line-height: 1;
}

.tp-cta-content {
    flex: 1;
}

.tp-cta-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 6px;
}

.tp-cta-content p {
    font-size: 15px;
    color: var(--tp-gray-600);
    margin: 0;
}

.tp-inline-cta .tp-cta-button {
    flex-shrink: 0;
    display: inline-block;
    width: auto;
    padding: 14px 28px;
}

/* ============================================
   TIPS LIST - Insight items with icons
   ============================================ */
.tp-tips-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.tp-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--tp-gray-50);
    border-radius: 14px;
    border-left: 4px solid var(--tp-blue-500);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-tip-item:hover {
    background: var(--tp-white);
    box-shadow: var(--tp-shadow-md);
    transform: translateX(4px);
}

.tp-tip-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.tp-tip-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--tp-gray-700);
}

/* ============================================
   INFO & WARNING BOXES
   ============================================ */
.tp-info-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 32px 0;
}

.tp-info-box h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 16px;
}

.tp-info-box p {
    margin: 0;
    color: var(--tp-gray-700);
    line-height: 1.7;
}

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

.tp-info-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    color: var(--tp-gray-700);
    line-height: 1.6;
}

.tp-info-box li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tp-warning-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 4px solid #f59e0b;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 32px 0;
}

.tp-warning-box h4 {
    font-size: 17px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 16px;
}

.tp-warning-box p {
    color: #78350f;
    margin: 0;
    line-height: 1.7;
}

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

.tp-warning-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    color: #78350f;
    line-height: 1.6;
}

.tp-warning-box li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tp-alert-box {
    border-radius: 16px;
    padding: 24px 28px;
    margin: 32px 0;
}

.tp-alert-warning {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(248, 113, 113, 0.08));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #dc2626;
}

.tp-alert-warning h4 {
    font-size: 17px;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 12px;
}

.tp-alert-warning p {
    color: #7f1d1d;
    margin: 0;
    line-height: 1.7;
}

.tp-alert-date {
    font-size: 13px;
    color: #991b1b;
    margin-top: 12px;
    opacity: 0.8;
}

/* ============================================
   INFO GRID - Multi-column info cards
   ============================================ */
.tp-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.tp-info-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-info-card:hover {
    box-shadow: var(--tp-shadow-md);
    transform: translateY(-2px);
}

.tp-info-card h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tp-blue-600);
    margin-bottom: 12px;
}

.tp-info-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--tp-gray-700);
}

.tp-info-small {
    font-size: 13px;
    color: var(--tp-gray-500);
    margin-top: 8px !important;
}

/* ============================================
   NUMBERED LISTS - Top 10 style items
   ============================================ */
.tp-numbered-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.tp-numbered-card {
    display: flex;
    gap: 24px;
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-numbered-card:hover {
    border-color: transparent;
    box-shadow: var(--tp-shadow-xl), 0 20px 40px -15px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.tp-number-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--tp-blue-600), var(--tp-cyan-600));
    color: var(--tp-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--tp-shadow-md);
}

.tp-numbered-card .tp-card-content {
    flex: 1;
}

.tp-numbered-card .tp-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 12px;
    padding-right: 0;
}

.tp-numbered-card .tp-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 0;
    border-bottom: none;
}

.tp-numbered-card .tp-card-meta span {
    font-size: 13px;
    color: var(--tp-gray-600);
    background: var(--tp-gray-100);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.tp-numbered-card .tp-card-description {
    margin-bottom: 0;
}

.tp-location {
    font-size: 14px;
    color: var(--tp-gray-600);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--tp-gray-100);
}

.tp-empty-state {
    text-align: center;
    padding: 48px 32px;
    background: var(--tp-gray-50);
    border-radius: 16px;
    color: var(--tp-gray-500);
}

/* ============================================
   FILTER NAVIGATION - Category filters
   ============================================ */
.tp-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0;
    padding: 20px;
    background: var(--tp-gray-50);
    border-radius: 14px;
}

.tp-filter-btn {
    padding: 10px 20px;
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tp-gray-600);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.tp-filter-btn:hover {
    border-color: var(--tp-blue-400);
    color: var(--tp-blue-600);
}

.tp-filter-btn.tp-active {
    background: linear-gradient(135deg, var(--tp-blue-600), var(--tp-cyan-600));
    color: var(--tp-white);
    border-color: transparent;
    box-shadow: var(--tp-shadow-md);
}

/* ============================================
   CATEGORY TAGS IN CARDS
   ============================================ */
.tp-category,
.tp-duration,
.tp-price,
.tp-vibe {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--tp-gray-100);
    color: var(--tp-gray-600);
}

.tp-category {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--tp-blue-600);
}

/* ============================================
   BADGE VARIANTS
   ============================================ */
.tp-badge-gem {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa) !important;
}

.tp-badge-free {
    background: linear-gradient(135deg, var(--tp-green-500), var(--tp-teal-400)) !important;
}

.tp-gem-card {
    border-color: rgba(139, 92, 246, 0.2);
}

.tp-gem-card:hover {
    box-shadow: var(--tp-shadow-xl), 0 20px 40px -15px rgba(139, 92, 246, 0.2);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.tp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.tp-faq-item {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.3s;
}

.tp-faq-item:hover {
    box-shadow: var(--tp-shadow-md);
}

.tp-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--tp-gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.tp-faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--tp-gray-600);
    margin: 0;
}

/* ============================================
   BUDGET PAGE - Cost breakdown & trip budgets
   ============================================ */
.tp-budget-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-budget-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-budget-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tp-shadow-xl);
}

.tp-budget-highlight {
    position: relative;
    overflow: hidden;
}

.tp-budget-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tp-blue-500), var(--tp-cyan-500));
}

.tp-budget-level-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tp-blue-600);
    margin-bottom: 16px;
}

.tp-budget-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--tp-gray-900);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.tp-budget-per {
    font-size: 14px;
    color: var(--tp-gray-500);
    margin-bottom: 20px;
}

.tp-budget-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tp-budget-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--tp-gray-100);
    font-size: 14px;
    color: var(--tp-gray-600);
}

.tp-budget-includes li:last-child {
    border-bottom: none;
}

/* Cost Table */
.tp-cost-table {
    margin: 32px 0;
}

.tp-cost-category {
    margin-bottom: 32px;
}

.tp-cost-category h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-cost-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tp-cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--tp-gray-50);
    border-radius: 12px;
    transition: all 0.2s;
}

.tp-cost-item:hover {
    background: var(--tp-white);
    box-shadow: var(--tp-shadow-sm);
}

.tp-cost-name {
    font-size: 15px;
    color: var(--tp-gray-700);
}

.tp-cost-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--tp-blue-600);
}

/* Trip Budget Cards */
.tp-trip-budgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-trip-budget-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
}

.tp-trip-budget-card:hover {
    box-shadow: var(--tp-shadow-lg);
    transform: translateY(-2px);
}

.tp-trip-budget-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 16px;
}

.tp-trip-total {
    font-size: 32px;
    font-weight: 800;
    color: var(--tp-blue-600);
    margin-bottom: 20px;
}

.tp-trip-budget-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-trip-budget-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--tp-gray-600);
    border-bottom: 1px solid var(--tp-gray-100);
}

.tp-trip-budget-card li:last-child {
    border-bottom: none;
}

.tp-recommended {
    border-color: var(--tp-blue-400);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.tp-recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--tp-blue-600), var(--tp-cyan-600));
    color: var(--tp-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ============================================
   RESTAURANT/FOOD PAGE - Dishes & Dining
   ============================================ */
.tp-dish-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-dish-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    transition: all 0.3s;
}

.tp-dish-card:hover {
    box-shadow: var(--tp-shadow-lg);
    transform: translateY(-2px);
}

.tp-dish-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp-dish-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 12px;
    padding-right: 80px;
}

.tp-dish-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--tp-gray-600);
    margin-bottom: 16px;
}

.tp-dish-tip {
    font-size: 14px;
    color: var(--tp-gray-700);
    background: var(--tp-gray-50);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.tp-dish-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--tp-green-500);
}

.tp-cuisine-tabs {
    margin: 32px 0;
}

.tp-cuisine-section {
    margin-bottom: 40px;
}

.tp-cuisine-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tp-gray-100);
}

.tp-street-food-card {
    border-left: 4px solid #f59e0b;
}

.tp-restaurant-address {
    font-size: 13px;
    color: var(--tp-gray-500);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--tp-gray-100);
}

/* Food Budget Table */
.tp-budget-table {
    margin: 32px 0;
}

.tp-budget-row {
    display: grid;
    grid-template-columns: 140px 120px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    background: var(--tp-gray-50);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.tp-budget-row:hover {
    background: var(--tp-white);
    box-shadow: var(--tp-shadow-sm);
}

.tp-budget-level {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-budget-icon {
    font-size: 24px;
}

.tp-budget-label {
    font-weight: 600;
    color: var(--tp-gray-900);
}

.tp-budget-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-blue-600);
}

.tp-budget-description {
    font-size: 14px;
    color: var(--tp-gray-600);
}

/* ============================================
   TRANSPORTATION PAGE
   ============================================ */
.tp-transport-comparison {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.tp-transport-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.tp-transport-card:hover {
    box-shadow: var(--tp-shadow-lg);
    transform: translateY(-2px);
}

.tp-transport-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tp-transport-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 12px;
}

.tp-transport-rating {
    margin-bottom: 16px;
}

.tp-rating-label {
    display: block;
    font-size: 12px;
    color: var(--tp-gray-500);
    margin-bottom: 4px;
}

.tp-rating-stars {
    font-size: 18px;
    color: #f59e0b;
    letter-spacing: 2px;
}

.tp-transport-card p {
    font-size: 14px;
    color: var(--tp-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Transfer Options */
.tp-transfer-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.tp-transfer-card {
    background: var(--tp-gray-50);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s;
}

.tp-transfer-card:hover {
    background: var(--tp-white);
    box-shadow: var(--tp-shadow-md);
}

.tp-transfer-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 8px;
}

.tp-transfer-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-blue-600);
    margin-bottom: 8px;
}

.tp-transfer-card p {
    font-size: 14px;
    color: var(--tp-gray-600);
    margin: 0;
    line-height: 1.5;
}

.tp-airport-code {
    display: inline-block;
    background: var(--tp-blue-600);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tp-local-transport {
    margin: 24px 0;
}

/* ============================================
   SAFETY PAGE
   ============================================ */
.tp-safety-indicator {
    border-radius: 20px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
}

.tp-safety-moderate {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.tp-safety-level {
    margin-bottom: 16px;
}

.tp-safety-label {
    font-size: 14px;
    color: var(--tp-gray-600);
    display: block;
    margin-bottom: 8px;
}

.tp-safety-value {
    font-size: 28px;
    font-weight: 800;
    color: #92400e;
    letter-spacing: 1px;
}

.tp-safety-summary {
    font-size: 16px;
    color: var(--tp-gray-700);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Advisory Cards */
.tp-advisory-grid {
    display: grid;
    gap: 16px;
    margin: 32px 0;
}

.tp-advisory-card {
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.2s;
}

.tp-advisory-card:hover {
    transform: translateX(4px);
}

.tp-advisory-caution {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.08));
    border-left: 4px solid #f59e0b;
}

.tp-advisory-level {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.tp-advisory-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--tp-gray-900);
    margin-bottom: 8px;
}

.tp-advisory-card p {
    font-size: 15px;
    color: var(--tp-gray-700);
    margin: 0;
    line-height: 1.6;
}

/* Scam Cards */
.tp-scam-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.tp-scam-card {
    display: flex;
    gap: 20px;
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.tp-scam-card:hover {
    box-shadow: var(--tp-shadow-md);
}

.tp-scam-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.tp-scam-content {
    flex: 1;
}

.tp-scam-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--tp-gray-900);
    margin-bottom: 8px;
}

.tp-scam-content p {
    font-size: 15px;
    color: var(--tp-gray-600);
    margin-bottom: 12px;
    line-height: 1.6;
}

.tp-scam-avoid {
    font-size: 14px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(74, 222, 128, 0.08));
    border-left: 3px solid var(--tp-green-500);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--tp-gray-700);
}

/* Emergency Contacts */
.tp-emergency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.tp-emergency-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}

.tp-emergency-card:hover {
    box-shadow: var(--tp-shadow-md);
}

.tp-emergency-critical {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(248, 113, 113, 0.05));
    border-color: rgba(239, 68, 68, 0.3);
}

.tp-emergency-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.tp-emergency-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--tp-gray-700);
    margin-bottom: 8px;
}

.tp-emergency-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--tp-gray-900);
    margin-bottom: 8px;
}

.tp-emergency-card p {
    font-size: 13px;
    color: var(--tp-gray-500);
    margin: 0;
}

/* ============================================
   NIGHTLIFE PAGE
   ============================================ */
.tp-nightlife-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.tp-stat-card {
    background: linear-gradient(135deg, var(--tp-slate-800), var(--tp-slate-900));
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: var(--tp-white);
}

.tp-stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.tp-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.tp-stat-value {
    font-size: 18px;
    font-weight: 700;
}

/* Neighborhood Cards */
.tp-neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-neighborhood-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
}

.tp-neighborhood-card:hover {
    box-shadow: var(--tp-shadow-lg);
    transform: translateY(-2px);
}

.tp-neighborhood-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 8px;
}

.tp-neighborhood-vibe {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.1));
    color: #7c3aed;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tp-neighborhood-card p {
    font-size: 15px;
    color: var(--tp-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tp-neighborhood-best-for {
    font-size: 14px;
    color: var(--tp-gray-700);
    background: var(--tp-gray-50);
    padding: 12px 16px;
    border-radius: 10px;
}

/* ============================================
   HIKING PAGE
   ============================================ */
.tp-trail-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.tp-trail-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
}

.tp-trail-card:hover {
    box-shadow: var(--tp-shadow-lg);
    transform: translateY(-2px);
}

.tp-trail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.tp-trail-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin: 0;
}

.tp-difficulty-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--tp-gray-200);
    color: var(--tp-gray-700);
}

.tp-difficulty-easy .tp-difficulty-badge,
.tp-trail-card.tp-difficulty-easy .tp-difficulty-badge {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: white;
}

.tp-difficulty-moderate .tp-difficulty-badge,
.tp-trail-card.tp-difficulty-moderate .tp-difficulty-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.tp-difficulty-challenging .tp-difficulty-badge,
.tp-trail-card.tp-difficulty-challenging .tp-difficulty-badge {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
}

.tp-difficulty-expert .tp-difficulty-badge,
.tp-trail-card.tp-difficulty-expert .tp-difficulty-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.tp-trail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.tp-stat {
    font-size: 14px;
    color: var(--tp-gray-600);
    background: var(--tp-gray-50);
    padding: 6px 14px;
    border-radius: 20px;
}

.tp-trail-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--tp-gray-600);
    margin-bottom: 16px;
}

.tp-trail-highlights {
    font-size: 14px;
    color: var(--tp-gray-700);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(74, 222, 128, 0.08));
    border-left: 3px solid var(--tp-green-500);
    padding: 12px 16px;
    border-radius: 8px;
}

/* Difficulty Guide */
.tp-difficulty-guide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.tp-difficulty-section {
    border-radius: 16px;
    padding: 24px;
}

.tp-difficulty-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tp-difficulty-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.tp-difficulty-easy {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
    color: #166534;
}

.tp-difficulty-moderate {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    color: #92400e;
}

.tp-difficulty-challenging {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.1));
    color: #9a3412;
}

.tp-difficulty-expert {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    color: #991b1b;
}

/* Gear Lists */
.tp-gear-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-gear-category {
    background: var(--tp-gray-50);
    border-radius: 16px;
    padding: 24px;
}

.tp-gear-category h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tp-gray-200);
}

.tp-gear-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-gear-category li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--tp-gray-700);
    border-bottom: 1px solid var(--tp-gray-200);
}

.tp-gear-category li:last-child {
    border-bottom: none;
}

/* Season Grid */
.tp-season-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.tp-season-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}

.tp-season-card:hover {
    box-shadow: var(--tp-shadow-md);
}

.tp-season-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 12px;
}

.tp-season-card p {
    font-size: 14px;
    color: var(--tp-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   DAY TRIPS PAGE
   ============================================ */
.tp-distance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.tp-distance-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s;
}

.tp-distance-card:hover {
    box-shadow: var(--tp-shadow-md);
    transform: translateY(-2px);
}

.tp-distance-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 4px;
}

.tp-distance-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tp-blue-600);
    margin-bottom: 12px;
}

.tp-distance-card p:not(.tp-distance-label) {
    font-size: 14px;
    color: var(--tp-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Comparison Table */
.tp-comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-comparison-column {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 28px;
}

.tp-comparison-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--tp-gray-100);
}

.tp-pros-list,
.tp-cons-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.tp-pros-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #166534;
}

.tp-cons-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #991b1b;
}

/* ============================================
   BEACHES PAGE
   ============================================ */
.tp-beach-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tp-packing-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tp-packing-list li {
    padding: 12px 16px;
    background: var(--tp-gray-50);
    border-radius: 10px;
    font-size: 14px;
    color: var(--tp-gray-700);
    transition: all 0.2s;
}

.tp-packing-list li:hover {
    background: var(--tp-white);
    box-shadow: var(--tp-shadow-sm);
}

/* ============================================
   WELLNESS PAGE - Additional styles
   ============================================ */
.tp-wellness-card {
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--tp-cyan-500), var(--tp-teal-400)) 1;
}

/* ============================================
   SAFETY CARDS - Severity-based cards
   ============================================ */
.tp-safety-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.tp-safety-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 14px;
    transition: all 0.2s;
}

.tp-safety-card:hover {
    box-shadow: var(--tp-shadow-md);
}

.tp-severity-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    background: var(--tp-gray-200);
    color: var(--tp-gray-700);
}

.tp-safety-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--tp-gray-700);
    margin: 0;
}

.tp-severity-critical .tp-severity-badge,
.tp-safety-card.tp-severity-critical .tp-severity-badge {
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
    color: white;
}

.tp-severity-critical {
    border-left: 4px solid #991b1b;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.05), rgba(153, 27, 27, 0.05));
}

.tp-severity-high .tp-severity-badge,
.tp-safety-card.tp-severity-high .tp-severity-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.tp-severity-high {
    border-left: 4px solid #dc2626;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(239, 68, 68, 0.05));
}

.tp-severity-medium .tp-severity-badge,
.tp-safety-card.tp-severity-medium .tp-severity-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.tp-severity-medium {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.05));
}

.tp-severity-low .tp-severity-badge,
.tp-safety-card.tp-severity-low .tp-severity-badge {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: white;
}

.tp-severity-low {
    border-left: 4px solid #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(74, 222, 128, 0.05));
}

/* ============================================
   TAG STYLES
   ============================================ */
.tp-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--tp-gray-100);
    color: var(--tp-gray-600);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.tp-card-tip {
    font-size: 14px;
    color: var(--tp-gray-700);
    background: var(--tp-gray-50);
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 12px;
}

/* ============================================
   STATS GRID - Overview stat cards (Hotels)
   ============================================ */
.tp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.tp-stats-grid .tp-stat-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.tp-stats-grid .tp-stat-card:hover {
    box-shadow: var(--tp-shadow-md);
    transform: translateY(-2px);
}

.tp-stats-grid .tp-stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.tp-stats-grid .tp-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tp-gray-500);
    margin-bottom: 6px;
}

.tp-stats-grid .tp-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-gray-900);
}

/* ============================================
   HOTEL-SPECIFIC STYLES
   ============================================ */
.tp-hotel-card {
    position: relative;
}

.tp-budget-section {
    margin-bottom: 40px;
}

.tp-budget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tp-gray-100);
}

.tp-budget-header .tp-budget-icon {
    font-size: 24px;
}

.tp-badge-budget {
    background: linear-gradient(135deg, #22c55e, #4ade80) !important;
}

.tp-badge-midrange {
    background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
}

.tp-badge-luxury {
    background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
}

.tp-rating {
    color: #f59e0b;
    font-weight: 600;
}

.tp-featured-hotel {
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--tp-blue-500), var(--tp-cyan-500)) 1;
}

/* ============================================
   IMPROVED INTRO TEXT TYPOGRAPHY
   ============================================ */
.tp-intro-text {
    position: relative;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(6, 182, 212, 0.03));
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 48px;
    border-left: 4px solid var(--tp-blue-500);
}

.tp-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--tp-gray-700);
    margin: 0;
}

.tp-intro-text p:first-child {
    font-size: 19px;
    font-weight: 500;
    color: var(--tp-gray-800);
}

.tp-intro-text p + p {
    margin-top: 16px;
}

/* Enhanced Content Header */
.tp-content-header {
    margin-bottom: 48px;
    position: relative;
}

.tp-content-header::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--tp-blue-500), var(--tp-cyan-500));
    border-radius: 2px;
}

.tp-content-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--tp-gray-600);
    max-width: 700px;
}

/* ============================================
   HISTORY PAGE - Timeline & Era Styles
   ============================================ */
.tp-timeline {
    position: relative;
    padding-left: 40px;
    margin: 32px 0;
}

.tp-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--tp-blue-500), var(--tp-cyan-500));
    border-radius: 2px;
}

.tp-timeline-item {
    position: relative;
    padding: 20px 0;
    padding-left: 32px;
}

.tp-timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 28px;
    width: 14px;
    height: 14px;
    background: var(--tp-white);
    border: 3px solid var(--tp-blue-500);
    border-radius: 50%;
}

.tp-timeline-date {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tp-blue-600);
    margin-bottom: 8px;
}

.tp-timeline-content {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.tp-timeline-content:hover {
    box-shadow: var(--tp-shadow-md);
    transform: translateX(4px);
}

.tp-timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 10px;
}

.tp-timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--tp-gray-600);
    margin: 0;
}

/* Era Grid */
.tp-era-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-era-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
    border-top: 4px solid var(--tp-blue-500);
}

.tp-era-card:hover {
    box-shadow: var(--tp-shadow-lg);
    transform: translateY(-2px);
}

.tp-era-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 8px;
}

.tp-era-period {
    font-size: 13px;
    font-weight: 600;
    color: var(--tp-blue-600);
    margin-bottom: 14px !important;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--tp-gray-100);
}

.tp-era-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--tp-gray-600);
    margin: 0;
}

.tp-era-sites {
    font-size: 14px;
    color: var(--tp-gray-700);
    background: var(--tp-gray-50);
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 16px;
}

/* ============================================
   WEATHER PAGE - Comprehensive Styles
   ============================================ */
.tp-best-time-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-best-card {
    border-radius: 20px;
    padding: 28px;
    position: relative;
}

.tp-best-recommended {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(74, 222, 128, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.tp-best-avoid {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(248, 113, 113, 0.08));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tp-best-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tp-best-recommended .tp-best-icon {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: white;
}

.tp-best-avoid .tp-best-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

.tp-best-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tp-best-recommended h3 {
    color: #166534;
}

.tp-best-avoid h3 {
    color: #991b1b;
}

.tp-best-months {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px !important;
}

.tp-best-recommended .tp-best-months {
    color: #15803d;
}

.tp-best-avoid .tp-best-months {
    color: #b91c1c;
}

.tp-best-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.tp-best-recommended p {
    color: #14532d;
}

.tp-best-avoid p {
    color: #7f1d1d;
}

/* Month Grid */
.tp-month-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin: 32px 0;
}

.tp-month-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s;
}

.tp-month-card:hover {
    box-shadow: var(--tp-shadow-md);
    transform: translateY(-2px);
}

.tp-month-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 8px;
}

.tp-month-temp {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-blue-600);
    margin-bottom: 6px;
}

.tp-month-desc {
    font-size: 11px;
    color: var(--tp-gray-500);
    line-height: 1.4;
}

.tp-month-best {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
    border-color: rgba(34, 197, 94, 0.3);
}

.tp-month-best .tp-month-temp {
    color: #16a34a;
}

.tp-month-avoid {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
    border-color: rgba(239, 68, 68, 0.3);
}

.tp-month-avoid .tp-month-temp {
    color: #dc2626;
}

/* Weather Season Cards - Enhanced */
.tp-season-card .tp-season-months {
    font-size: 13px;
    font-weight: 600;
    color: var(--tp-blue-600);
    margin-bottom: 12px !important;
}

.tp-season-tips {
    font-size: 14px;
    background: var(--tp-gray-50);
    padding: 14px 16px;
    border-radius: 10px;
    margin-top: 16px;
    color: var(--tp-gray-700);
    line-height: 1.6;
}

/* Packing Sections */
.tp-packing-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.tp-packing-section {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-200);
    border-radius: 16px;
    padding: 24px;
}

.tp-packing-section h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--tp-gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tp-gray-100);
}

.tp-packing-section .tp-packing-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.tp-packing-section .tp-packing-list li {
    padding: 10px 14px;
}

/* Crowd Info */
.tp-crowd-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.tp-crowd-card {
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.tp-crowd-high {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(248, 113, 113, 0.08));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tp-crowd-medium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.tp-crowd-low {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(74, 222, 128, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.tp-crowd-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tp-crowd-months {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px !important;
}

.tp-crowd-high .tp-crowd-months { color: #dc2626; }
.tp-crowd-medium .tp-crowd-months { color: #d97706; }
.tp-crowd-low .tp-crowd-months { color: #16a34a; }

.tp-crowd-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: var(--tp-gray-700);
}

/* Events List */
.tp-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.tp-event-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--tp-gray-50);
    border-radius: 14px;
    transition: all 0.2s;
}

.tp-event-card:hover {
    background: var(--tp-white);
    box-shadow: var(--tp-shadow-sm);
}

.tp-event-date {
    font-size: 13px;
    font-weight: 700;
    color: var(--tp-blue-600);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    padding: 6px 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.tp-event-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--tp-gray-900);
    margin-bottom: 4px;
}

.tp-event-card p {
    font-size: 14px;
    color: var(--tp-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
    .tp-budget-overview,
    .tp-trip-budgets {
        grid-template-columns: 1fr;
    }

    .tp-transport-comparison,
    .tp-transfer-options,
    .tp-emergency-grid,
    .tp-nightlife-stats,
    .tp-difficulty-guide,
    .tp-season-grid,
    .tp-distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-comparison-table {
        grid-template-columns: 1fr;
    }

    .tp-inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .tp-inline-cta .tp-cta-button {
        width: 100%;
    }

    .tp-dish-gallery,
    .tp-neighborhood-grid,
    .tp-gear-list {
        grid-template-columns: 1fr;
    }

    .tp-cost-grid {
        grid-template-columns: 1fr;
    }

    .tp-packing-list {
        grid-template-columns: 1fr;
    }

    .tp-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tp-numbered-card {
        flex-direction: column;
        gap: 16px;
    }

    .tp-number-badge {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .tp-transport-comparison,
    .tp-transfer-options,
    .tp-emergency-grid,
    .tp-nightlife-stats,
    .tp-difficulty-guide,
    .tp-season-grid,
    .tp-distance-grid {
        grid-template-columns: 1fr;
    }

    .tp-budget-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .tp-budget-level {
        justify-content: center;
    }

    .tp-trail-header {
        flex-direction: column;
        gap: 12px;
    }

    .tp-scam-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   PRODUCT PRICE STYLES - Real Product CTAs
   ============================================ */
.tp-cta-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.tp-sidebar-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.tp-cta-price-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 0;
}

.tp-price-sale {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-green-500, #22c55e);
}

.tp-price-original {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--tp-gray-400, #9ca3af);
    opacity: 0.7;
}

.tp-sidebar-price .tp-price-sale {
    font-size: 22px;
}

.tp-sidebar-price .tp-price-original {
    font-size: 15px;
}

.tp-cta-price-final .tp-price-sale {
    font-size: 28px;
}

.tp-cta-price-final .tp-price-original {
    font-size: 18px;
}
