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

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

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

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

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

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

    /* Shadows */
    --rg-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --rg-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --rg-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --rg-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --rg-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --rg-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --rg-shadow-blue: 0 20px 40px -10px rgba(59, 130, 246, 0.3);
    --rg-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(--rg-gray-800);
    background: var(--rg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   CONTAINER
   ============================================ */
.rg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.rg-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

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

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

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

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

.rg-nav-links a[href*="shop"] {
    background: linear-gradient(135deg, var(--rg-blue-600), var(--rg-cyan-600));
    color: var(--rg-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow-md);
}

.rg-nav-links a[href*="shop"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--rg-shadow-lg), 0 0 30px rgba(59, 130, 246, 0.4);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.rg-breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
    color: var(--rg-gray-500);
}

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

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

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

/* ============================================
   HERO SECTION - Dramatic & Premium
   ============================================ */
.rg-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.rg-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
}

.rg-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--rg-white);
    max-width: 900px;
    padding: 0 32px;
}

.rg-hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.rg-hero-content p {
    font-size: 22px;
    margin-bottom: 28px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rg-hero-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 15px;
}

.rg-hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   CONTENT LAYOUT - Three Column Grid
   ============================================ */
.rg-content-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr 320px;
    gap: 48px;
    margin: 56px 0;
    align-items: start;
}

/* ============================================
   TABLE OF CONTENTS (Left Sidebar)
   ============================================ */
.rg-toc {
    position: sticky;
    top: 112px;
}

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

.rg-toc-list {
    list-style: none;
}

.rg-toc-list li {
    margin-bottom: 4px;
}

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

.rg-toc-list a:hover {
    background: var(--rg-gray-50);
    color: var(--rg-blue-600);
}

.rg-toc-list a.rg-toc-active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--rg-blue-600);
    font-weight: 600;
    border-left-color: var(--rg-blue-500);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.rg-main-content {
    min-width: 0;
}

/* Article Sections */
.rg-section {
    margin-bottom: 72px;
    scroll-margin-top: 100px;
}

.rg-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--rg-gray-900);
    letter-spacing: -0.5px;
    padding-bottom: 16px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--rg-blue-500), var(--rg-cyan-500), transparent) 1;
}

.rg-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--rg-gray-900);
    letter-spacing: -0.3px;
}

.rg-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--rg-gray-900);
}

.rg-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--rg-gray-700);
    margin-bottom: 16px;
}

.rg-section ul,
.rg-section ol {
    margin: 20px 0 20px 24px;
    line-height: 1.8;
}

.rg-section li {
    margin-bottom: 12px;
    color: var(--rg-gray-700);
}

/* ============================================
   PLACES GRID - Modern Cards
   ============================================ */
.rg-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.rg-place-card {
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow);
}

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

.rg-place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.rg-place-card-content {
    padding: 24px;
}

.rg-place-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--rg-gray-900);
}

.rg-place-card-content p {
    font-size: 15px;
    color: var(--rg-gray-600);
    line-height: 1.7;
}

/* ============================================
   HOTELS GRID
   ============================================ */
.rg-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.rg-hotel-card {
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow);
}

.rg-hotel-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--rg-shadow-md);
}

.rg-hotel-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--rg-gray-900);
}

.rg-hotel-meta {
    font-size: 13px;
    color: var(--rg-gray-500);
    margin-bottom: 8px;
}

/* ============================================
   RESTAURANTS GRID
   ============================================ */
.rg-restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.rg-restaurant-card {
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow);
}

.rg-restaurant-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--rg-shadow-md);
}

.rg-restaurant-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--rg-gray-900);
}

.rg-restaurant-meta {
    font-size: 13px;
    color: var(--rg-gray-500);
    margin-bottom: 8px;
}

/* ============================================
   TRANSPORTATION OPTIONS
   ============================================ */
.rg-transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.rg-transport-card {
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow);
}

.rg-transport-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--rg-shadow-md);
}

.rg-transport-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--rg-gray-900);
}

.rg-transport-cost {
    font-size: 14px;
    color: var(--rg-blue-600);
    font-weight: 600;
    margin-top: 8px;
}

/* ============================================
   ITINERARY CARDS
   ============================================ */
.rg-itinerary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.rg-itinerary-card {
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow);
}

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

.rg-itinerary-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--rg-blue-600), var(--rg-cyan-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rg-day-list {
    list-style: none;
    margin: 0;
}

.rg-day-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rg-gray-100);
    font-size: 15px;
    color: var(--rg-gray-700);
}

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

/* ============================================
   INFO BOXES
   ============================================ */
.rg-info-box {
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: var(--rg-shadow);
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--rg-blue-500), var(--rg-cyan-500)) 1;
}

.rg-info-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--rg-gray-900);
}

.rg-info-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--rg-gray-600);
}

/* Warning Box */
.rg-warning-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: var(--rg-shadow);
    border-left: 4px solid var(--rg-red-500);
}

.rg-warning-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--rg-red-500);
}

.rg-warning-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--rg-gray-700);
}

/* ============================================
   HIDDEN GEMS GRID
   ============================================ */
.rg-gems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.rg-gem-card {
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow);
}

.rg-gem-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--rg-shadow-md);
}

.rg-gem-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--rg-gray-900);
}

.rg-gem-location {
    font-size: 13px;
    color: var(--rg-gray-500);
    margin-top: 8px;
}

/* ============================================
   LISTS
   ============================================ */
.rg-tips-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.rg-tips-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    border-bottom: 1px solid var(--rg-gray-100);
}

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

.rg-tips-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rg-blue-500);
    font-size: 20px;
    line-height: 1.4;
}

/* ============================================
   SAFETY CARDS - Severity-Based Styling
   ============================================ */
.rg-safety-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.rg-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);
}

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

.rg-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;
}

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   BUDGET TABLE
   ============================================ */
.rg-budget-table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--rg-shadow);
}

.rg-budget-table th,
.rg-budget-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--rg-gray-100);
}

.rg-budget-table th {
    background: linear-gradient(135deg, var(--rg-gray-50), var(--rg-gray-100));
    font-weight: 600;
    color: var(--rg-gray-700);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rg-budget-table tr:hover td {
    background: var(--rg-gray-50);
}

.rg-budget-table td {
    color: var(--rg-gray-700);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.rg-faq-item {
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow);
}

.rg-faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--rg-shadow-md);
}

.rg-faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--rg-gray-900);
}

.rg-faq-item p {
    font-size: 16px;
    color: var(--rg-gray-600);
    line-height: 1.7;
}

/* ============================================
   RIGHT SIDEBAR
   ============================================ */
.rg-sidebar {
    position: sticky;
    top: 112px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--rg-gray-300) transparent;
}

.rg-sidebar::-webkit-scrollbar {
    width: 6px;
}

.rg-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.rg-sidebar::-webkit-scrollbar-thumb {
    background: var(--rg-gray-300);
    border-radius: 3px;
}

.rg-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--rg-gray-400);
}

/* CTA Box - Premium Dark Gradient (Compact) */
.rg-cta-box {
    background: linear-gradient(135deg, var(--rg-blue-900) 0%, var(--rg-slate-800) 50%, var(--rg-slate-900) 100%);
    border-radius: 16px;
    padding: 24px;
    color: var(--rg-white);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--rg-shadow-lg);
}

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

.rg-cta-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.rg-cta-box p {
    font-size: 13px;
    margin-bottom: 18px;
    opacity: 0.85;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

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

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

/* Sidebar Info Boxes - Compact & Clean */
.rg-sidebar .rg-info-box {
    background: var(--rg-gray-50);
    border: 1px solid var(--rg-gray-200);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: none;
    border-left: none;
    border-image: none;
}

.rg-sidebar .rg-info-box h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--rg-gray-500);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rg-gray-200);
}

/* Sidebar Lists - Compact */
.rg-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.rg-sidebar-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rg-sidebar-list li:first-child {
    padding-top: 0;
}

.rg-sidebar-list a {
    color: var(--rg-gray-700);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.rg-sidebar-list a:hover {
    color: var(--rg-blue-600);
}

.rg-sidebar-list a::before {
    content: '→';
    font-size: 11px;
    color: var(--rg-gray-400);
    transition: all 0.2s;
}

.rg-sidebar-list a:hover::before {
    color: var(--rg-blue-500);
    transform: translateX(2px);
}

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

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

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

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

.rg-footer-section ul {
    list-style: none;
}

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

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

.rg-footer-section a:hover {
    color: var(--rg-white);
    transform: translateX(4px);
    display: inline-block;
}

.rg-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;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .rg-content-wrapper {
        grid-template-columns: 220px 1fr;
        gap: 40px;
    }

    .rg-sidebar {
        display: none;
    }

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

@media (max-width: 900px) {
    .rg-content-wrapper {
        grid-template-columns: 1fr;
    }

    .rg-toc {
        position: static;
        background: var(--rg-white);
        padding: 24px;
        border-radius: 16px;
        margin-bottom: 32px;
        border: 1px solid var(--rg-gray-200);
        box-shadow: var(--rg-shadow);
    }

    .rg-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .rg-hero {
        height: 400px;
    }

    .rg-hero-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .rg-hero-content p {
        font-size: 18px;
    }

    .rg-hero-meta {
        gap: 12px;
    }

    .rg-hero-meta span {
        padding: 8px 16px;
        font-size: 14px;
    }

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

    .rg-places-grid,
    .rg-itinerary-cards {
        grid-template-columns: 1fr;
    }

    .rg-section h2 {
        font-size: 28px;
    }

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

    .rg-nav {
        height: 64px;
    }
}

@media (max-width: 480px) {
    .rg-hero {
        height: 350px;
    }

    .rg-hero-content h1 {
        font-size: 32px;
    }

    .rg-hero-content p {
        font-size: 16px;
    }

    .rg-section h2 {
        font-size: 24px;
    }

    .rg-place-card-content,
    .rg-itinerary-card {
        padding: 20px;
    }

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

/* ============================================
   TOPIC NAVIGATION GRID - Compact 4x5 Layout
   ============================================ */
.rg-topic-section {
    margin-bottom: 48px;
}

.rg-topic-section h2 {
    margin-bottom: 20px;
}

.rg-topic-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.rg-topic-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--rg-white);
    border: 1px solid var(--rg-gray-200);
    border-radius: 10px;
    text-decoration: none;
    color: var(--rg-gray-700);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--rg-shadow-sm);
}

.rg-topic-chip:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
    border-color: var(--rg-blue-400);
    color: var(--rg-blue-600);
    transform: translateY(-2px);
    box-shadow: var(--rg-shadow-md);
}

.rg-topic-chip-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.rg-topic-chip-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1100px) {
    .rg-topic-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .rg-topic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .rg-topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   SIDEBAR PRODUCT CARDS - Real Products
   ============================================ */
.rg-products-box {
    background: linear-gradient(135deg, var(--rg-blue-900) 0%, var(--rg-slate-800) 50%, var(--rg-slate-900) 100%);
    border-radius: 16px;
    padding: 20px;
    color: var(--rg-white);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--rg-shadow-lg);
}

.rg-products-box::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;
}

.rg-products-box h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.rg-product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.rg-product-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    color: var(--rg-white);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rg-product-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.rg-product-name {
    font-size: 12px;
    font-weight: 500;
    flex: 1;
    padding-right: 8px;
    line-height: 1.3;
}

.rg-product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.rg-price-sale {
    font-size: 14px;
    font-weight: 700;
    color: var(--rg-green-400);
}

.rg-price-original {
    font-size: 11px;
    text-decoration: line-through;
    opacity: 0.5;
}

.rg-products-box .rg-cta-button {
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 10px 20px;
}

/* ============================================
   QUICK FACTS - Compact Grid Layout
   ============================================ */
.rg-quick-facts {
    padding: 14px !important;
}

.rg-quick-facts h3 {
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
}

.rg-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.rg-fact {
    display: flex;
    flex-direction: column;
    padding: 6px 0;
}

.rg-fact-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--rg-gray-400);
    margin-bottom: 2px;
}

.rg-fact-value {
    font-size: 12px;
    font-weight: 500;
    color: var(--rg-gray-700);
    line-height: 1.3;
}
