/* 
 * Mobile Additional CSS - CoveringIndia
 * Additional styles to complement framework.css
 * Created: 2025-01-15
 */

/* ===== CRITICAL ABOVE-THE-FOLD STYLES ===== */
body { 
    margin: 0; 
    padding: 0; 
    font-family: 'Roboto', sans-serif; 
}

.article-header { 
    position: relative; 
    width: 100%; 
    height: 300px; 
    overflow: hidden; 
    border-radius: 12px; 
    margin-bottom: 20px; 
    background: #f0f0f0; 
}

/* Festival Details Page - Remove border radius only for festival details page */
.festival-details-page .article-header,
.festival-details-page .article-image,
.festival-details-page .article-card .article-image,
.festival-details-page .article-full .article-image {
    border-radius: 0 !important; /* Remove border radius only for festival details */
}

/* Header Title - Dynamic and single line */
.header-title {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 200px !important;
    display: inline-block !important;
    font-size: 12px !important;
    font-weight: bold !important;
}

/* Festival Meta Info - Two Line Design */
.festival-meta-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--highlight-color, #007bff);
}

.festival-meta-info .meta-line {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.festival-meta-info .meta-line:last-child {
    margin-bottom: 0;
}

.festival-meta-info .meta-line i {
    margin-right: 8px;
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: var(--highlight-color, #007bff) !important;
    display: inline-block !important;
    visibility: visible !important;
}

.festival-meta-info .meta-line strong {
    margin-right: 5px;
    color: #333;
}

.festival-meta-info .meta-line span,
.festival-meta-info .meta-line time {
    color: #666;
    font-weight: 500;
}

/* Keep original styles for all other pages */
.article-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
}

.p-3 { 
    padding: 1rem; 
}

.font-14 { 
    font-size: 14px; 
    line-height: 1.5; 
}

.article-meta { 
    margin-bottom: 15px; 
    padding: 15px; 
    background: #f8f9fa; 
    border-radius: 8px; 
    border-left: 4px solid #007bff; 
}

.font-700 { 
    font-weight: 700; 
}

.font-20 { 
    font-size: 20px; 
    line-height: 1.3; 
}

.reading-time-box { 
    line-height: 1.6; 
    font-size: 16px; 
    margin-bottom: 20px; 
}

.festival-card { 
    min-height: 280px; 
}

.gallery-image-container { 
    position: relative; 
    width: 100%; 
    height: 200px; 
    overflow: hidden; 
    border-radius: 8px; 
    background: #f0f0f0; 
}

.festival-card-image { 
    position: relative; 
    width: 100%; 
    height: 200px; 
    overflow: hidden; 
    background: #f0f0f0; 
    border-radius: 8px; 
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

/* ===== FORM VALIDATION ===== */
.fieldHasError {
    border-bottom: 1px solid #a94442 !important;
}

/* ===== PAGINATION STYLES ===== */
.pagination-wrapper,
.pagination-container {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-color);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span,
.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0.25rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-primary);
}

.pagination a:hover,
.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.pagination .active span,
.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.pagination .disabled span,
.pagination .page-item.disabled .page-link,
.pagination .disabled a {
    background: var(--light-color);
    color: var(--text-light);
    border-color: var(--border-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .disabled a:hover {
    background: var(--light-color);
    color: var(--text-light);
    border-color: var(--border-color);
    transform: none;
    box-shadow: none;
}

.pagination-info {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .pagination {
        gap: 0.125rem;
    }
    
    .pagination a,
    .pagination span,
    .pagination .page-link {
        min-width: 28px;
        height: 28px;
        font-size: 0.7rem;
        padding: 0.125rem;
    }
    
    .pagination-wrapper,
    .pagination-container {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 0.1rem;
    }
    
    .pagination a,
    .pagination span,
    .pagination .page-link {
        min-width: 26px;
        height: 26px;
        font-size: 0.65rem;
        padding: 0.1rem;
    }
    
    .pagination li:not(.page-item):not(.disabled) {
        display: none;
    }
    
    .pagination li.page-item {
        display: inline-block;
    }
}

/* ===== PRELOADER STYLES ===== */
.preloader-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-light.hide-preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#preload-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ef4444;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 100000;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* ===== PRINT STYLES ===== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .page-content {
        padding-top: 0;
    }
}

/* ===== PAGE CONTENT STYLES ===== */
.page-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background: #fff;
}

.page-build {
    position: relative;
    z-index: 1;
}

/* ===== FIX SIDEBAR HIDER ISSUE ===== */
.sidebar-hider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Move behind content */
    background: transparent; /* Remove white background */
    pointer-events: none; /* Allow clicks to pass through */
}

/* ===== LOGO STYLES FROM COVERINGINDIA CDN ===== */
.highlight-red .header-light .header-logo {
    background-image: url('https://assets.coveringindia.com/static/coveringindia-logo-mobile.png');
}

.highlight-red .header-dark .header-logo {
    background-image: url('https://assets.coveringindia.com/static/coveringindia-logo-mobile.png');
}

.highlight-red .footer-light .footer-logo {
    /* Background image removed - now using HTML img tag */
}

.highlight-red .footer-dark .footer-logo {
    /* Background image removed - now using HTML img tag */
}

.footer .footer-logo,
.header .header-logo {
    background-size: 180px 43px;
    width: 180px;
}

.footer .footer-logo {
    position: relative;
    width: 100%;
    height: 42px;
    left: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ===== FONTAWESOME ICON FIXES ===== */
.fa, .fas, .far, .fab, .fal, .fat {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro" !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.far {
    font-weight: 400;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em;
    top: 1em;
}

/* ===== MENU SYSTEM ENHANCEMENTS ===== */
/* Additional menu styles to complement framework.css - minimal overrides only */

/* Ensure smooth menu animations */
.menu-sidebar {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.menu-sidebar.active-touch {
    z-index: 1001 !important;
}

#menu-hider.menu-hider-active {
    z-index: 1000 !important;
}

/* ===== SUBMENU ENHANCEMENTS ===== */
/* Add count badges to submenu items */
.submenu-has-numbers {
    position: relative;
}

.submenu-has-numbers::after {
    content: attr(data-count);
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    margin-left: auto;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.submenu-has-numbers[aria-expanded="true"]::after {
    content: "−";
    background: #666;
}

/* Submenu height-based animation */
.submenu {
    height: 0px;
    overflow: hidden;
    background: #222;
    border-left: 3px solid #ef4444;
    transition: height 0.35s ease;
    /* Ensure submenu items are properly structured */
    box-sizing: border-box;
}

/* Ensure submenu items have proper height for calculation */
.submenu a {
    padding: 12px 20px 12px 40px !important;
    font-size: 14px;
    color: #ccc !important;
    border-bottom: 1px solid #444;
    display: block;
    height: 45px;
    line-height: 21px;
    box-sizing: border-box;
}

/* Ensure menu items are clickable */
.menu-items a {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Ensure submenu parent links are clickable */
.menu-items a[data-submenu] {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 15 !important;
    background: transparent !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 50px !important;
}

/* Ensure menu sidebar is clickable */
.menu-sidebar {
    pointer-events: auto !important;
    z-index: 1000 !important;
}

/* Ensure menu items container is clickable */
.menu-items {
    pointer-events: auto !important;
    z-index: 1001 !important;
}

.submenu a:hover {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1);
}

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

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f9fafb;
        --text-secondary: #d1d5db;
        --text-light: #9ca3af;
        --light-color: #1f2937;
        --border-color: #374151;
    }
    
    body {
        background-color: #111827;
        color: var(--text-primary);
    }
    
    .card {
        background: #1f2937;
        border: 1px solid var(--border-color);
    }
}

<<<<<<< Updated upstream
/* ===== UNIVERSAL CARD STYLES ===== */
/* Universal Card - Can be used for packages, festivals, etc. */
.universal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.universal-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: inherit;
}

.universal-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.universal-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.universal-card-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.universal-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.universal-card-title a {
    color: inherit;
    text-decoration: none;
}

.universal-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.universal-card-meta i {
    color: var(--accent-color);
    min-width: 16px;
}

.universal-card-meta strong {
    font-weight: 600;
    color: var(--text-primary);
}

.universal-card-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.universal-card-price {
    display: flex;
    flex-direction: column;
}

.price-original {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--success-color);
}

.price-per-person {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.universal-card-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.universal-card-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

/* Festival-specific card variations */
.festival-card-universal .universal-card-badge {
    background: var(--accent-color);
}

/* Festival-specific meta adjustments */
.festival-card-universal .universal-card-meta {
    justify-content: space-between;
    gap: 0rem;
}

.festival-card-universal .universal-card-meta > div {
    display: flex;
    align-items: center;
}

.festival-card-universal .universal-card-meta .ms-auto {
    margin-left: auto;
}

/* Travelogue-specific card variations */
.travelogue-card-universal .universal-card-badge {
    background: var(--primary-color);
}

.travelogue-card-universal .universal-card-meta {
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.travelogue-card-universal .universal-card-meta > div {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex-shrink: 0;
    min-width: 0;
}

.travelogue-card-universal .universal-card-meta > div:first-child {
    flex: 1;
    min-width: 0;
}

.travelogue-card-universal .universal-card-meta > div:first-child span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.travelogue-card-universal .universal-card-meta .ms-auto {
    margin-left: auto;
    flex-shrink: 0;
}

/* News-specific card variations */
.news-card-universal .universal-card-badge {
    background: var(--accent-color);
}

.news-card-universal .universal-card-meta {
    justify-content: flex-end;
    gap: 0rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.news-card-universal .universal-card-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-universal .universal-card-meta .ms-auto {
    margin-left: 0;
}

/* Places-specific card variations */
.places-card-universal .universal-card-badge {
    background: var(--primary-color);
}

.places-card-universal .universal-card-meta {
    justify-content: space-between;
    gap: 0rem;
}

.places-card-universal .universal-card-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.places-card-universal .universal-card-footer {
    justify-content: center;
}

.places-card-universal .universal-card-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Theme-specific card variations */
.theme-attraction-card-universal .universal-card-badge {
    background: var(--accent-color);
}

.theme-attraction-card-universal .universal-card-meta {
    justify-content: space-between;
    gap: 0rem;
}

.theme-attraction-card-universal .universal-card-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-attraction-card-universal .universal-card-footer {
    justify-content: center;
}

.theme-attraction-card-universal .universal-card-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    width: 100%;
    text-align: center;
    justify-content: center;
}

.theme-city-card-universal .universal-card-badge {
    background: var(--secondary-color);
}

.theme-city-card-universal .universal-card-meta {
    justify-content: space-between;
    gap: 0rem;
}

.theme-city-card-universal .universal-card-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-city-card-universal .universal-card-footer {
    justify-content: center;
}

.theme-city-card-universal .universal-card-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6d28d9 100%);
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* News Details Banner Styles */
.news-banner-section {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.news-banner-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-banner-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px 20px;
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

.news-banner-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.news-banner-meta i {
    font-size: 12px;
    color: var(--accent-color);
}

/* Responsive adjustments for news banner */
@media (max-width: 480px) {
    .news-banner-image {
        height: 200px;
    }
    
    .news-banner-meta {
        gap: 10px;
        padding: 12px 15px;
    }
    
    .news-banner-meta span {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Article Details Banner Styles */
.article-banner-section {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.article-banner-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-banner-meta {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: nowrap;
    min-height: 50px;
    width: 100%;
    box-sizing: border-box;
}

.article-banner-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    margin: 0;
    white-space: nowrap;
}

.article-banner-meta i {
    font-size: 12px;
    color: var(--accent-color);
}

.article-banner-meta .article-author {
    font-size: 14px !important;
    padding: 8px 12px !important;
    bottom: auto !important;
    z-index: auto !important;
    position: static !important;
}

/* Override framework.css conflicts for article banner */
.article-banner-section .article-banner-meta .article-author {
    font-size: 14px !important;
    padding: 8px 12px !important;
    bottom: auto !important;
    z-index: auto !important;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-sm) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.article-banner-section .article-banner-meta .article-date {
    margin-left: 63% !important;
    font-size: 14px !important;
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-sm) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

/* Responsive adjustments for article banner */
@media (max-width: 480px) {
    .article-banner-image {
        height: 200px;
    }
    
    .article-banner-meta {
        padding: 12px 15px;
        flex-wrap: nowrap;
    }
    
    .article-banner-meta span {
        font-size: 12px;
        padding: 6px 10px;
        flex-shrink: 0;
    }
    
    .article-banner-section .article-banner-meta .article-author {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
    
    .article-banner-section .article-banner-meta .article-date {
        margin-left: 30% !important;
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
}

/* Load More Button Styles */
.load-more-container {
}

.load-more-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1d4ed8 0%, var(--primary-color) 100%);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.load-more-btn i {
    font-size: 14px;
}

/* ===== TOUR PACKAGE STYLES ===== */
/* Top Banner Section */
.top-banner-section {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 0;
}

.banner-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    padding: 0 1rem;
    z-index: 2;
}

.banner-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    color: white;
}

.banner-subtitle {
    font-size: 1rem;
    opacity: 1;
    margin-bottom: 0;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    color: white;
}

/* Package Cards */
.packages-container {
    padding: 1rem;
    background: var(--light-color);
    min-height: 60vh;
}

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.package-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-content {
    padding: 1rem;
}

.package-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.package-title a {
    color: inherit;
    text-decoration: none;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.package-meta i {
    color: var(--accent-color);
    margin-right: 0.25rem;
}

.package-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.price-original {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--success-color);
}

.price-per-person {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.view-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ===== TOUR PACKAGE DETAIL STYLES ===== */
/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    pointer-events: none;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

.back-btn {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.back-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Main Image Section */
.main-image-section {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f3f4f6;
    aspect-ratio: 3/2;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    aspect-ratio: 3/2;
}

/* Image Gallery */
.image-gallery {
    padding: 10px 0 10px 15px;
    background: var(--white);
}

.gallery-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex-shrink: 0;
    width: 90px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f3f4f6;
    aspect-ratio: 1/1;
}

.gallery-item.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* Package Overview Section */
.package-overview {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.overview-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.duration-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.discount-badge {
    background: #ff6b35;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.title-price-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.title-section {
    flex: 1;
}

.package-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.package-subtitle {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
}

.price-section {
    text-align: right;
    flex-shrink: 0;
}

.old-price {
    font-size: 18px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.price-label {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

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

.rating-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.rating-arrow {
    color: var(--text-light);
    font-size: 12px;
    margin-left: auto;
}

/* Description Section */
.description-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.description-container {
    position: relative;
}

.description-text {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary-color);
}

.read-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateY(-1px);
}

/* Package Highlights Section */
.package-highlights-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: var(--white);
    font-size: 16px;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.highlight-label {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-value {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Things To Do Section */
.things-to-do-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.activity-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-checkbox i {
    color: var(--white);
    font-size: 10px;
}

.activity-text {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
}

/* Itinerary Section */
.itinerary-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.itinerary-timeline {
    position: relative;
    padding-left: 20px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -12px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.timeline-marker .day {
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
}

.timeline-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.itinerary-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.itinerary-description p {
    margin: 0 0 8px 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.itinerary-description p:last-child {
    margin-bottom: 0;
}

.itinerary-description ul {
    margin: 8px 0;
    padding-left: 20px;
}

.itinerary-description li {
    margin: 4px 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Inclusions & Exclusions Sections */
.inclusions-section,
.exclusions-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.inclusions-list,
.exclusions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inclusion-item,
.exclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.inclusion-item {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.inclusion-item i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.inclusion-item span {
    color: #1f2937;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.exclusion-item {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.exclusion-item i {
    color: #ef4444;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.exclusion-item span {
    color: #1f2937;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.why-choose-content {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

.why-choose-content p {
    margin-bottom: 12px;
}

.why-choose-content ul,
.why-choose-content ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

.why-choose-content li {
    margin-bottom: 8px;
}

/* Terms and Conditions Section */
.terms-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.terms-content {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

.terms-content p {
    margin-bottom: 12px;
}

.terms-content ul,
.terms-content ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 8px;
}

/* Cancellation Policy Section */
.cancellation-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cancellation-content {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

.cancellation-content p {
    margin-bottom: 12px;
}

.cancellation-content ul,
.cancellation-content ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

.cancellation-content li {
    margin-bottom: 8px;
}

/* Contact Information Section */
.contact-info-section {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

/* ===== FESTIVALS LISTING PAGE STYLES ===== */

/* Festival Card Styles */
.festival-card {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.festival-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.festival-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.festival-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: white;
}

.festival-card-bottom {
    color: white;
    font-size: 12px;
    margin: 0 12px 8px;
    opacity: 0.9;
}

.festival-card-bottom .d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.festival-card-bottom i {
    padding-right: 4px;
    font-size: 11px;
}

.festival-card-bottom strong {
    font-weight: 600;
}

.festival-card-bottom .ms-auto {
    margin-left: auto;
}

.festival-card-bottom time {
    font-weight: 500;
}

/* Festival Card Info Section */
.festival-card-info {
    padding: 12px;
    margin-top: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.festival-card-info h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #333333 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    margin-top: 0 !important;
    text-transform: capitalize !important;
}

.festival-card-info p {
    margin-bottom: 0 !important;
    color: #666666 !important;
    line-height: 1.6 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-align: justify !important;
}

/* Festival Month Cards */
.festival-month-card {
    background: linear-gradient(178deg, #1f1f1f 0%, #b91c1c 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
    padding: 16px;
    text-align: center;
    max-width: 350px;
    width: 90%;
}

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

.festival-month-card h3 {
    color: white !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.5px;
}

.festival-month-card p,
section.festival-page-header .festival-month-card p,
.festival-page-header .festival-month-card p {
    color: white !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    opacity: 0.95;
}

.festival-month-card .button {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    background: white;
    color: #dc2626;
    border-radius: 12px;
    padding: 0 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.festival-month-card .button:hover {
    background: #f8f9fa;
    color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Festival Banner */
.festival-banner {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.festival-banner-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.festival-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.festival-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #ffffff;
}

.festival-banner-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
    line-height: 1.3;
    color: #ffffff;
}

.festival-banner-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.9);
    max-width: 320px;
    color: #ffffff;
}

/* Festival Page Header */
.festival-page-header {
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
}

.festival-page-header h2 {
    font-weight: 700 !important;
    text-align: center !important;
    font-size: 20px !important;
    color: #333333 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
}

.festival-page-header h2 i {
    color: #dc2626 !important;
    padding-right: 8px !important;
    font-size: 18px !important;
}

.festival-page-header .color-highlight {
    color: #dc2626 !important;
    font-weight: 700 !important;
}

/* Festival Page Header - Enhanced Specificity */
section.festival-page-header p,
.festival-page-header p {
    text-align: justify !important;
    color: #666666 !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Decoration Elements */
.deco-thin {
    height: 2px;
    background: #dc2626;
    margin-bottom: 16px;
    border-radius: 1px;
}

/* ===== COMMON PAGE HEADER STYLES ===== */

/* Page Header - Universal Class (Alternative to festival-page-header) */
.page-header {
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
}

.page-header h2 {
    font-weight: 700 !important;
    text-align: center !important;
    font-size: 20px !important;
    color: #333333 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
}

.page-header h2 i {
    color: #dc2626 !important;
    padding-right: 8px !important;
    font-size: 18px !important;
}

.page-header .color-highlight {
    color: #dc2626 !important;
    font-weight: 700 !important;
}

.page-header p {
    text-align: justify !important;
    color: #666666 !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Pagination Wrapper */
.pagination-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* ===== DISTANCE CALCULATOR PAGE STYLES ===== */

/* Distance Calculator Form Styles */
.distance-form {
    padding: 20px;
    margin: 20px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.distance-form .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.distance-form .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.distance-form .form-input:focus {
    outline: none;
    border-color: #667eea;
}



.distance-form .search-btn:hover {
    transform: translateY(-2px);
}

.distance-form .search-btn i {
    margin-right: 8px;
}

/* Distance Calculator Layout Stability */
.distanceResult {
    min-height: 120px;
}

.map-container {
    height: 400px;
    background: #f0f0f0;
    border-radius: 8px;
}

.directions-container {
    min-height: 100px;
}

/* Distance Calculator Placeholder Styles */
.results-placeholder,
.map-placeholder,
.directions-placeholder {
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

/* Distance Calculator FAQ Styles */
.faq-question {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
}

.faq-question.active {
    background-color: #e3f2fd !important;
    color: #1976d2 !important;
    border-radius: 4px;
}

.faq-question:not(.active) {
    background-color: transparent !important;
    color: inherit !important;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Responsive Design for Distance Calculator */
@media (max-width: 768px) {
    .distance-form {
        padding: 18px;
        margin: 18px 10px;
    }
    
    .distance-form .form-input {
        font-size: 16px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .distance-form {
        padding: 15px;
        margin: 15px 5px;
    }
    
    .distance-form .form-input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Responsive Design for Festivals */
@media (max-width: 480px) {
    .festival-card {
        height: 160px;
        border-radius: 0;
    }
    
    .festival-card-content {
        padding: 12px;
    }
    
    .festival-card-bottom {
        font-size: 11px;
        margin: 0 8px 6px;
    }
    
    .festival-card-info {
        padding: 10px;
    }
    
    .festival-card-info h3 {
        font-size: 16px !important;
    }
    
    .festival-card-info p {
        font-size: 15px !important;
    }
    
    .festival-month-card {
        padding: 16px;
        border-radius: 0;
    }
    
    .festival-month-card h3 {
        font-size: 16px !important;
    }
    
    .festival-month-card p {
        font-size: 13px !important;
    }
    
    .festival-page-header h2 {
        font-size: 18px !important;
    }
    
    .festival-page-header p {
        font-size: 16px !important;
    }
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.contact-label {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-value:hover {
    color: var(--primary-color);
}

.phone-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.phone-separator {
    color: var(--text-light);
    font-size: 12px;
}

/* Booking Section */
.booking-section {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
}

.enquiry-form {
    background: #f8fafc;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Floating Label Form Groups - Fixed */
.form-group-floating {
    position: relative;
    margin-bottom: 16px;
}

.form-row-floating {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-floating .form-control {
    width: 100%;
    padding: 16px 16px 8px 16px;
    padding-right: 45px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    font-weight: 500;
    min-height: 56px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group-floating .form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #ffffff;
}

.form-group-floating .form-control:hover {
    border-color: #9ca3af;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group-floating .form-control::placeholder {
    color: transparent;
}

.form-group-floating label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 16px;
    color: #9ca3af;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #ffffff;
    padding: 0 4px;
    font-weight: 500;
    z-index: 1;
}

/* Fixed floating label behavior */
.form-group-floating .form-control:focus + label,
.form-group-floating .form-control:not(:placeholder-shown) + label,
.form-group-floating .form-control:valid + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
    background: #ffffff;
}

.form-group-floating .input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.form-group-floating .form-control:focus + label + .input-icon,
.form-group-floating .form-control:focus ~ .input-icon {
    color: #2563eb;
}

textarea.form-group-floating .form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
    padding-right: 45px;
}

textarea.form-group-floating .input-icon {
    top: 20px;
    transform: none;
}

textarea.form-group-floating label {
    top: 20px;
}

textarea.form-group-floating .form-control:focus + label,
textarea.form-group-floating .form-control:not(:placeholder-shown) + label,
textarea.form-group-floating .form-control:valid + label {
    top: -8px;
}

.btn-enquiry {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
    min-height: 56px;
}

.btn-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff !important;
}

.btn-enquiry:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px -1px rgba(16, 185, 129, 0.3);
}

.btn-enquiry:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-enquiry .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff !important;
}

.btn-enquiry .btn-text i {
    font-size: 16px;
    color: #ffffff !important;
}

.btn-enquiry .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff !important;
}

/* Additional floating label support for inputs with values */
.form-group-floating .form-control.has-value + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
    background: #ffffff;
}

textarea.form-group-floating .form-control.has-value + label {
    top: -8px;
}

/* Sticky Price + Enquiry Button Styles */
.sticky-price-enquiry {
    position: fixed !important;
    bottom: calc(65px + (env(safe-area-inset-bottom)) * 1.1) !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999 !important;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 0;
    display: block !important;
    overflow: visible !important;
    opacity: 0;
    visibility: hidden;
}

.sticky-price-enquiry.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-price-section {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 15px 15px 0 0;
    min-height: 60px;
}

.sticky-price-info {
    flex: 1;
    color: var(--white);
}

.sticky-price {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.sticky-price-label {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.2;
}

.sticky-enquiry-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.sticky-enquiry-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.sticky-enquiry-btn:active {
    transform: translateY(0);
}

/* Enquiry Popup Modal Styles */
.enquiry-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001; /* Higher than simple modal */
    animation: fadeIn 0.3s ease;
}

.enquiry-popup-modal.show {
    display: flex; /* Use flex for better centering */
    align-items: center;
    justify-content: center;
}

.enquiry-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.enquiry-popup-content {
    position: relative; /* Changed from absolute to relative for flexbox centering */
    background: #ffffff;
    border-radius: 16px;
    width: 95%;
    max-width: 420px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    margin: 20px; /* Add margin for better spacing */
}

.enquiry-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.enquiry-popup-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.enquiry-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-popup-close:hover {
    background: var(--light-color);
    color: var(--text-primary);
    transform: scale(1.1);
}

.enquiry-popup-body {
    padding: 0 24px 24px;
}

/* Popup Form Error Styles */
.popup-form-error {
    font-size: 12px;
    color: var(--danger-color);
    margin-top: 1px;
    min-height: 2px;
    padding-left: 4px;
}

/* Additional Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== MODAL STYLES ===== */
/* Bootstrap Modal Overrides */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background-color: rgba(107, 114, 128, 0.1);
    color: #374151;
    transform: scale(1.1);
}

.modal-body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.success-checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.success-checkmark i {
    font-size: 30px;
    color: white;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #059669;
}

.quote-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.blockquote {
    border: none;
    margin: 0;
}

.blockquote p {
    font-style: italic;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.blockquote-footer {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    padding: 10px 25px;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

/* Simple Modal Styles */
.simple-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000; /* Lower than enquiry popup */
    align-items: center;
    justify-content: center;
}

.simple-modal-content {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.simple-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.simple-modal-close:hover {
    background-color: rgba(107, 114, 128, 0.1);
    color: #374151;
    transform: scale(1.1);
}

.simple-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.simple-modal-icon i {
    font-size: 30px;
    color: white;
}

.simple-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1rem;
}

.simple-modal-text {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.simple-modal-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 25px;
    font-weight: 600;
    cursor: pointer;
}

/* Success Animation */
.success-animation {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

=======
>>>>>>> Stashed changes
/* ===== WHAT DO YOU HAVE IN MIND SECTION STYLING ===== */
.mind-section-title {
    position: relative;
    margin-bottom: 20px;
}

.mind-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background-color: #dc3545;
}

.category-grid-container {
    padding: 25px 20px;
    background: #e3f2fd;
    border-radius: 12px;
    margin: 20px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 20px;
    max-width: 380px;
    margin: 0 auto;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    min-height: 80px;
}

.category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px 8px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    justify-content: center;
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-link:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-icon-container {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.category-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    transition: all 0.3s ease;
}

.category-link:hover .category-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    transform: scale(1.1);
}

.category-label {
    font-size: 13px;
    font-weight: 700;
    color: #333 !important;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
    min-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-link:hover .category-label {
    color: #dc3545 !important;
    transform: scale(1.05);
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    .category-grid-container {
        padding: 20px 15px;
        margin: 15px 10px;
    }
    
    .category-grid {
        gap: 20px 15px;
        max-width: 350px;
    }
    
    .category-icon-container {
        width: 55px;
        height: 55px;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
    }
    
    .category-label {
        font-size: 12px;
    }
<<<<<<< Updated upstream
    
    .top-banner-section {
        height: 200px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .package-image {
        height: 180px;
    }
    
    .package-title {
        font-size: 1rem;
    }
    
    .nav-overlay {
        padding: 12px 16px;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .main-image-section {
        height: 250px;
    }
    
    .package-title {
        font-size: 20px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .form-row-floating {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        width: 100px;
        height: 70px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .sticky-price-section {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .sticky-price {
        font-size: 18px;
    }
    
    .sticky-price-label {
        font-size: 11px;
    }
    
    .sticky-enquiry-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .enquiry-popup-content {
        width: 98%;
        max-width: 380px;
        max-height: 90vh;
        margin: 16px;
    }
    
    .enquiry-popup-header {
        padding: 16px 20px 0;
    }
    
    .enquiry-popup-header h3 {
        font-size: 18px;
    }
    
    .enquiry-popup-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .enquiry-popup-body {
        padding: 0 20px 20px;
    }
    
    .form-group-floating {
        margin-bottom: 14px;
    }
    
    .form-row-floating {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }
    
    .adults-children-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }
    
    .adults-children-row .form-group-floating {
        margin-bottom: 14px;
    }
    
    .adults-children-row .form-group-floating .form-control {
        font-size: 15px;
        text-align: center;
        min-height: 52px;
    }
    
    .form-group-floating .form-control {
        padding: 14px 14px 6px 14px;
        padding-right: 42px;
        font-size: 15px;
        min-height: 52px;
        border-width: 2px;
    }
    
    .form-group-floating label {
        font-size: 15px;
        top: 14px;
        left: 14px;
    }
    
    .form-group-floating .form-control:focus + label,
    .form-group-floating .form-control:not(:placeholder-shown) + label {
        top: -6px;
        left: 10px;
        font-size: 11px;
    }
    
    .form-group-floating .input-icon {
        right: 14px;
        font-size: 16px;
    }
    
    .btn-enquiry {
        padding: 16px 20px;
        font-size: 15px;
        min-height: 52px;
        margin-top: 14px;
    }
}

/* Enquiry Popup Modal Specific Styles */
.enquiry-popup-modal .form-group-floating .form-control {
    min-height: 42px;
    padding: 12px 16px 6px 16px;
    padding-right: 45px;
}

.enquiry-popup-modal .form-row-floating {
    gap: 12px;
    margin-bottom: 12px;
}

.enquiry-popup-modal .form-group-floating {
    margin-bottom: 12px;
}

/* Override adults-children-row styles in popup modal */
.enquiry-popup-modal .adults-children-row .form-group-floating {
    margin-bottom: 0 !important;
}

.enquiry-popup-modal .adults-children-row .form-group-floating .form-control {
    min-height: 42px !important;
    font-size: 16px !important;
    text-align: left !important;
}

/* Ensure consistent spacing for all form elements in popup */
.enquiry-popup-modal .enquiry-popup-body .form-group-floating:last-child {
    margin-bottom: 0;
}

.enquiry-popup-modal .enquiry-popup-body .form-row-floating:last-child {
    margin-bottom: 0;
}

/* YouTube-Style Mobile Video Listing - Exact Match */
.video-listing {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background-color: #fff;
}

.video-listing.grid-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.video-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    padding: 0;
    border-bottom: none;
    transition: none;
    align-items: stretch;
    gap: 0;
}

.video-card:hover {
    background-color: transparent;
    transform: none;
    box-shadow: none;
}

.video-card:last-child {
    border-bottom: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumbnail.long-video {
    width: 100%;
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    flex: 1;
    padding: 12px 16px 16px 16px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    gap: 12px;
}

.video-channel-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    flex-shrink: 0;
    overflow: hidden;
    margin-top: 2px;
}

.video-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-right: 8px;
}

.video-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px 0;
    color: #0f0f0f;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.video-channel {
    font-size: 14px;
    margin: 0 0 2px 0;
    color: #606060;
    font-weight: 400;
    line-height: 1.2;
}

.video-meta {
    font-size: 14px;
    color: #606060;
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.video-meta span {
    margin: 0;
    line-height: 1.2;
}

.video-views {
    font-size: 14px;
    color: #606060;
}

.video-date {
    font-size: 14px;
    color: #606060;
}

.video-menu {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.video-menu:hover {
    background-color: #f0f0f0;
}

.video-menu::before {
    content: '⋮';
    font-size: 20px;
    color: #606060;
    font-weight: bold;
    line-height: 1;
    transform: rotate(90deg);
}

/* Short Videos - Same vertical layout */
.video-listing.short-videos .video-card {
    flex-direction: column;
    padding: 0;
    gap: 0;
}

.video-listing.short-videos .video-thumbnail {
    width: 100%;
    height: 200px;
    border-radius: 0;
}

.video-listing.short-videos .video-info {
    padding: 12px 16px 16px 16px;
}

.video-listing.short-videos .video-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px 0;
    -webkit-line-clamp: 2;
}

.video-listing.short-videos .video-channel {
    font-size: 14px;
    margin: 0 0 4px 0;
}

.video-listing.short-videos .video-meta {
    font-size: 14px;
    flex-direction: column;
    gap: 2px;
}

/* Loading indicator */
.video-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #606060;
    font-size: 14px;
}

.video-loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #606060;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

/* YouTube Shorts Section */
.shorts-section {
    margin: 20px 0;
    padding: 0 16px;
}

.shorts-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
}

.shorts-icon {
    width: 20px;
    height: 20px;
    background-color: #ff0000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shorts-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 2px;
}

.shorts-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0;
}

.shorts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.shorts-video-card {
    position: relative;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.shorts-video-card:hover {
    transform: scale(1.02);
}

.shorts-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
}

.shorts-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shorts-menu {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.shorts-menu:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.shorts-menu::before {
    content: '⋮';
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    transform: rotate(90deg);
}

.shorts-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    padding: 16px 12px 12px 12px;
    color: #fff;
    z-index: 2;
}

.shorts-title-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.shorts-channel {
    font-size: 12px;
    color: #e0e0e0;
    margin: 0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.shorts-banner {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: 16px;
}

.shorts-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shorts-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.8) 0%, rgba(255, 69, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.shorts-banner-text {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Combined Videos Header */
.combined-videos-header {
    background-color: #fff;
    padding: 24px 16px;
    margin-bottom: 0;
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
}

.main-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-description {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    color: #333;
    font-weight: 400;
}

/* Combined Video Listing */
.combined-video-listing {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background-color: #fff;
}

.combined-video-listing .video-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    padding: 0;
    border-bottom: none;
    transition: none;
    align-items: stretch;
    gap: 0;
}

.combined-video-listing .video-card:hover {
    background-color: transparent;
    transform: none;
    box-shadow: none;
}

.combined-video-listing .video-thumbnail {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #000;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.combined-video-listing .video-thumbnail.long-video {
    width: 100%;
    height: 240px;
}

.combined-video-listing .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combined-video-listing .video-info {
    flex: 1;
    padding: 12px 16px 16px 16px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    gap: 12px;
}

.combined-video-listing .video-channel-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    flex-shrink: 0;
    overflow: hidden;
    margin-top: 2px;
}

.combined-video-listing .video-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combined-video-listing .video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-right: 8px;
}

.combined-video-listing .video-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px 0;
    color: #0f0f0f;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.combined-video-listing .video-channel {
    font-size: 14px;
    margin: 0 0 2px 0;
    color: #606060;
    font-weight: 400;
    line-height: 1.2;
}

.combined-video-listing .video-meta {
    font-size: 14px;
    color: #606060;
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.combined-video-listing .video-meta span {
    margin: 0;
    line-height: 1.2;
}

.combined-video-listing .video-views {
    font-size: 14px;
    color: #606060;
}

.combined-video-listing .video-date {
    font-size: 14px;
    color: #606060;
}

.combined-video-listing .video-menu {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.combined-video-listing .video-menu:hover {
    background-color: #f0f0f0;
}

.combined-video-listing .video-menu::before {
    content: '⋮';
    font-size: 20px;
    color: #606060;
    font-weight: bold;
    line-height: 1;
    transform: rotate(90deg);
}

/* Combined Video Listing Responsive */
@media (max-width: 480px) {
    .combined-videos-header {
        padding: 20px 12px;
    }
    
    .main-heading {
        font-size: 20px;
        margin: 0 0 12px 0;
    }
    
    .header-description {
        font-size: 14px;
        margin: 0 0 16px 0;
    }
    
    .combined-video-listing .video-info {
        padding: 10px 12px 12px 12px;
        gap: 10px;
    }
    
    .combined-video-listing .video-channel-avatar {
        width: 36px;
        height: 36px;
    }
    
    .combined-video-listing .video-content {
        padding-right: 6px;
    }
    
    .combined-video-listing .video-title {
        font-size: 15px;
        margin: 0 0 5px 0;
    }
    
    .combined-video-listing .video-channel {
        font-size: 13px;
        margin: 0 0 2px 0;
    }
    
    .combined-video-listing .video-meta {
        font-size: 13px;
        gap: 3px;
    }
    
    .combined-video-listing .video-menu {
        width: 36px;
        height: 36px;
    }
    
    .combined-video-listing .video-menu::before {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .combined-videos-header {
        padding: 16px 10px;
    }
    
    .main-heading {
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    
    .header-description {
        font-size: 13px;
        margin: 0 0 14px 0;
    }
    
    .combined-video-listing .video-info {
        padding: 8px 10px 10px 10px;
        gap: 8px;
    }
    
    .combined-video-listing .video-channel-avatar {
        width: 32px;
        height: 32px;
    }
    
    .combined-video-listing .video-content {
        padding-right: 4px;
    }
    
    .combined-video-listing .video-title {
        font-size: 14px;
        margin: 0 0 4px 0;
    }
    
    .combined-video-listing .video-channel {
        font-size: 12px;
        margin: 0 0 1px 0;
    }
    
    .combined-video-listing .video-meta {
        font-size: 12px;
        gap: 2px;
    }
    
    .combined-video-listing .video-menu {
        width: 32px;
        height: 32px;
    }
    
    .combined-video-listing .video-menu::before {
        font-size: 16px;
    }
}

/* YouTube Shorts-Style Video Details */
.youtube-shorts-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 150px); /* Subtract header and footer height */
    max-height: calc(100vh - 150px); /* Maximum height constraint */
    overflow-y: auto; /* Allow vertical scrolling for multiple videos */
    padding: 16px; /* Add padding around the container */
    border-radius: 8px; /* Rounded corners */
    scroll-behavior: smooth; /* Smooth scrolling */
}

.short-video-item {
    position: relative;
    width: 100%;
    height: calc(100vh * 0.76); /* Dynamic height: 76% of viewport height */
    margin-bottom: 20px; /* Spacing between videos */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Clean edges */
    cursor: pointer; /* Make it clickable */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.short-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.short-video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Video Info Overlay */
.short-video-info {
    position: absolute;
    bottom: 80px;
    left: 16px;
    right: 80px;
    z-index: 3;
    color: #fff;
}

.video-title-overlay {
    margin-bottom: 12px;
}

.short-video-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.channel-info-overlay {
    display: flex;
    align-items: center;
    gap: 8px;
}

.channel-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.channel-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-details-small {
    flex: 1;
}

.channel-name-small {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Action Buttons Overlay */
.short-video-actions {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 3;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
    min-width: 48px;
    min-height: 48px;
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.action-btn.active {
    color: #ff0000;
}

.action-icon {
    font-size: 24px;
    line-height: 1;
}

.action-count {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* Comments Panel */
.comments-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 4;
    display: flex;
    flex-direction: column;
}

.comments-panel.active {
    transform: translateY(0);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.comments-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #030303;
}

.close-comments {
    background: none;
    border: none;
    font-size: 20px;
    color: #606060;
    cursor: pointer;
    padding: 4px;
}

.comments-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.add-comment-section {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.add-comment-section .comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.add-comment-section .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-comment-section .comment-input {
    flex: 1;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 14px;
    background: transparent;
    outline: none;
}

.add-comment-section .comment-input::placeholder {
    color: #606060;
}

.comments-list {
    margin-top: 16px;
}

.no-comments {
    text-align: center;
    padding: 20px;
    color: #606060;
    font-size: 14px;
}


.loading-shorts {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

.loading-spinner {
    color: #fff;
    font-size: 16px;
    text-align: center;
}

/* Shorts Responsive */
@media (max-width: 480px) {
    .short-video-title {
        font-size: 14px;
    }
    
    .channel-name-small {
        font-size: 12px;
    }
    
    .action-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .action-icon {
        font-size: 20px;
    }
    
    .action-count {
        font-size: 10px;
    }
    
    .short-video-info {
        bottom: 70px;
        left: 12px;
        right: 70px;
    }
    
    .short-video-actions {
        bottom: 12px;
        right: 12px;
        gap: 12px;
    }
    
    /* Ensure video fits device properly */
    .youtube-shorts-container {
        height: calc(100vh - 150px);
        max-height: calc(100vh - 150px);
        height: calc(100dvh - 150px); /* Dynamic viewport height for mobile */
        max-height: calc(100dvh - 150px);
        padding: 12px; /* Smaller padding on mobile */
    }
    
    .short-video-item {
        height: calc(100vh * 0.75); /* Dynamic height: 75% of viewport height on mobile */
        height: calc(100dvh * 0.75); /* Dynamic viewport height for mobile */
        margin-bottom: 16px; /* Smaller spacing on mobile */
    }
    
    .short-video-player {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .short-video-player iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 360px) {
    .short-video-title {
        font-size: 13px;
    }
    
    .channel-name-small {
        font-size: 11px;
    }
    
    .action-btn {
        min-width: 40px;
        min-height: 40px;
    }
    
    .action-icon {
        font-size: 18px;
    }
    
    .action-count {
        font-size: 9px;
    }
    
    .short-video-info {
        bottom: 60px;
        left: 10px;
        right: 60px;
    }
    
    .short-video-actions {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }
    
    /* Adjust height for smaller screens */
    .youtube-shorts-container {
        height: calc(100vh - 130px); /* Smaller header/footer on small screens */
        max-height: calc(100vh - 130px);
        height: calc(100dvh - 130px);
        max-height: calc(100dvh - 130px);
        padding: 10px; /* Even smaller padding on small screens */
    }
    
    .short-video-item {
        height: calc(100vh * 0.70); /* Dynamic height: 70% of viewport height on small screens */
        height: calc(100dvh * 0.70); /* Dynamic viewport height for small screens */
        margin-bottom: 12px; /* Smaller spacing on small screens */
    }
    
}

/* Additional responsive breakpoints for better device coverage */
@media (max-width: 414px) {
    .short-video-item {
        height: calc(100vh * 0.78); /* Slightly larger for devices like iPhone 11 Pro Max */
        height: calc(100dvh * 0.78);
    }
}

@media (max-width: 375px) {
    .short-video-item {
        height: calc(100vh * 0.72); /* Optimized for iPhone 6/7/8 */
        height: calc(100dvh * 0.72);
    }
}

@media (max-width: 320px) {
    .short-video-item {
        height: calc(100vh * 0.68); /* Very small screens */
        height: calc(100dvh * 0.68);
    }
}

/* Large screens optimization */
@media (min-width: 768px) {
    .short-video-item {
        height: calc(100vh * 0.80); /* Larger screens get more height */
        max-height: 600px; /* But cap at 600px for very large screens */
    }
}

/* YouTube-Style Video Details Page */
.youtube-video-details {
    background-color: #fff;
    min-height: 100vh;
}

/* Video Player Container */
.video-player-container {
    background-color: #000;
    position: relative;
    width: 100%;
}

.video-player {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

/* Video Info Section */
.video-info-section {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: #030303;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stats-left {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #606060;
}

.stats-right {
    display: flex;
    gap: 8px;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 14px;
    color: #606060;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-button:hover {
    background-color: #f2f2f2;
}

.button-icon {
    font-size: 16px;
}

.button-text {
    font-weight: 500;
}

/* Channel Info Section */
.channel-info-section {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.channel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-details {
    flex: 1;
}

.channel-name {
    font-size: 16px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 2px 0;
}

.channel-subscribers {
    font-size: 14px;
    color: #606060;
    margin: 0;
}

.subscribe-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #cc0000;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.subscribe-button:hover {
    background-color: #b30000;
}

.subscribe-icon {
    font-size: 16px;
}

/* Video Description Section */
.video-description-section {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.description-content {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 12px;
}

.description-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #606060;
}

.description-text {
    font-size: 14px;
    line-height: 1.5;
    color: #030303;
    margin-bottom: 8px;
}

.show-more-button {
    background: none;
    border: none;
    color: #606060;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.show-more-button:hover {
    color: #030303;
}

/* Comments Section */
.comments-section {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.comments-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.comments-title {
    font-size: 16px;
    font-weight: 600;
    color: #030303;
    margin: 0;
}

.comments-count {
    font-size: 14px;
    color: #606060;
}

.add-comment {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-input-container {
    flex: 1;
}

.comment-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 14px;
    background: transparent;
    outline: none;
}

.comment-input::placeholder {
    color: #606060;
}

.comments-list {
    margin-top: 16px;
}

.no-comments {
    text-align: center;
    padding: 20px;
    color: #606060;
    font-size: 14px;
}

/* Related Videos Section */
.related-videos-section {
    padding: 16px;
}

.related-videos-title {
    font-size: 16px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 16px 0;
}

.related-videos-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Use existing video listing styles for related videos */
.related-videos-section .video-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.related-videos-section .video-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.related-videos-section .video-thumbnail {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.related-videos-section .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-videos-section .video-info {
    display: flex;
    padding: 12px;
    gap: 12px;
    align-items: flex-start;
}

.related-videos-section .video-channel-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.related-videos-section .video-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-videos-section .video-content {
    flex: 1;
    min-width: 0;
    padding-right: 8px;
}

.related-videos-section .video-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 4px 0;
    color: #030303;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-videos-section .video-channel {
    font-size: 12px;
    color: #606060;
    margin: 0 0 2px 0;
}

.related-videos-section .video-meta {
    display: flex;
    gap: 4px;
    font-size: 12px;
    color: #606060;
}

.related-videos-section .video-menu {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.related-videos-section .video-menu:hover {
    background-color: #f2f2f2;
}

.related-videos-section .video-menu::before {
    content: '⋮';
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    transform: rotate(90deg);
}

/* YouTube Video Details Responsive */
@media (max-width: 480px) {
    .video-title {
        font-size: 16px;
    }
    
    .stats-right {
        gap: 4px;
    }
    
    .action-button {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .button-text {
        display: none;
    }
    
    .channel-name {
        font-size: 14px;
    }
    
    .channel-subscribers {
        font-size: 12px;
    }
    
    .subscribe-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .related-videos-section .video-thumbnail {
        height: 180px;
    }
    
    .related-videos-section .video-info {
        padding: 10px;
        gap: 10px;
    }
    
    .related-videos-section .video-channel-avatar {
        width: 36px;
        height: 36px;
    }
    
    .related-videos-section .video-title {
        font-size: 13px;
    }
    
    .related-videos-section .video-channel,
    .related-videos-section .video-meta {
        font-size: 11px;
    }
    
    .related-videos-section .video-menu {
        width: 36px;
        height: 36px;
    }
    
    .related-videos-section .video-menu::before {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .video-info-section,
    .channel-info-section,
    .video-description-section,
    .comments-section,
    .related-videos-section {
        padding: 12px;
    }
    
    .video-title {
        font-size: 15px;
    }
    
    .stats-left {
        font-size: 12px;
    }
    
    .action-button {
        padding: 4px 6px;
    }
    
    .channel-avatar {
        width: 40px;
        height: 40px;
    }
    
    .channel-name {
        font-size: 13px;
    }
    
    .channel-subscribers {
        font-size: 11px;
    }
    
    .subscribe-button {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .related-videos-section .video-thumbnail {
        height: 160px;
    }
    
    .related-videos-section .video-info {
        padding: 8px;
        gap: 8px;
    }
    
    .related-videos-section .video-channel-avatar {
        width: 32px;
        height: 32px;
    }
    
    .related-videos-section .video-title {
        font-size: 12px;
    }
    
    .related-videos-section .video-channel,
    .related-videos-section .video-meta {
        font-size: 10px;
    }
    
    .related-videos-section .video-menu {
        width: 32px;
        height: 32px;
    }
    
    .related-videos-section .video-menu::before {
        font-size: 16px;
    }
}

/* Shorts Section Responsive */

/* Shorts Section Responsive */
@media (max-width: 480px) {
    .shorts-section {
        padding: 0 12px;
    }
    
    .shorts-title {
        font-size: 18px;
    }
    
    .shorts-grid {
        gap: 6px;
    }
    
    .shorts-menu {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
    }
    
    .shorts-menu::before {
        font-size: 14px;
    }
    
    .shorts-title-text {
        font-size: 13px;
    }
    
    .shorts-channel {
        font-size: 11px;
    }
    
    .shorts-banner {
        height: 100px;
    }
    
    .shorts-banner-text {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .shorts-section {
        padding: 0 10px;
    }
    
    .shorts-title {
        font-size: 16px;
    }
    
    .shorts-grid {
        gap: 4px;
    }
    
    .shorts-menu {
        width: 24px;
        height: 24px;
        top: 4px;
        right: 4px;
    }
    
    .shorts-menu::before {
        font-size: 12px;
    }
    
    .shorts-title-text {
        font-size: 12px;
    }
    
    .shorts-channel {
        font-size: 10px;
    }
    
    .shorts-banner {
        height: 80px;
    }
    
    .shorts-banner-text {
        font-size: 18px;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive improvements for YouTube-style design */
@media (max-width: 480px) {
    .video-thumbnail {
        height: 180px;
    }
    
    .video-info {
        padding: 10px 12px 12px 12px;
        gap: 10px;
    }
    
    .video-channel-avatar {
        width: 36px;
        height: 36px;
    }
    
    .video-content {
        padding-right: 6px;
    }
    
    .video-title {
        font-size: 15px;
        margin: 0 0 5px 0;
    }
    
    .video-channel {
        font-size: 13px;
        margin: 0 0 2px 0;
    }
    
    .video-meta {
        font-size: 13px;
        gap: 3px;
    }
    
    .video-menu {
        width: 36px;
        height: 36px;
    }
    
    .video-menu::before {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .video-thumbnail {
        height: 160px;
    }
    
    .video-info {
        padding: 8px 10px 10px 10px;
        gap: 8px;
    }
    
    .video-channel-avatar {
        width: 32px;
        height: 32px;
    }
    
    .video-content {
        padding-right: 4px;
    }
    
    .video-title {
        font-size: 14px;
        margin: 0 0 4px 0;
    }
    
    .video-channel {
        font-size: 12px;
        margin: 0 0 1px 0;
    }
    
    .video-meta {
        font-size: 12px;
        gap: 2px;
    }
    
    .video-menu {
        width: 32px;
        height: 32px;
    }
    
    .video-menu::before {
        font-size: 16px;
    }
}

/* Short videos responsive - same as regular videos */
@media (max-width: 480px) {
    .video-listing.short-videos .video-thumbnail {
        height: 180px;
    }
    
    .video-listing.short-videos .video-info {
        padding: 10px 12px 12px 12px;
        gap: 10px;
    }
    
    .video-listing.short-videos .video-channel-avatar {
        width: 36px;
        height: 36px;
    }
    
    .video-listing.short-videos .video-content {
        padding-right: 6px;
    }
    
    .video-listing.short-videos .video-title {
        font-size: 15px;
        margin: 0 0 5px 0;
    }
    
    .video-listing.short-videos .video-channel {
        font-size: 13px;
        margin: 0 0 2px 0;
    }
    
    .video-listing.short-videos .video-meta {
        font-size: 13px;
        gap: 3px;
    }
}

@media (max-width: 360px) {
    .video-listing.short-videos .video-thumbnail {
        height: 160px;
    }
    
    .video-listing.short-videos .video-info {
        padding: 8px 10px 10px 10px;
        gap: 8px;
    }
    
    .video-listing.short-videos .video-channel-avatar {
        width: 32px;
        height: 32px;
    }
    
    .video-listing.short-videos .video-content {
        padding-right: 4px;
    }
    
    .video-listing.short-videos .video-title {
        font-size: 14px;
        margin: 0 0 4px 0;
    }
    
    .video-listing.short-videos .video-channel {
        font-size: 12px;
        margin: 0 0 1px 0;
    }
    
    .video-listing.short-videos .video-meta {
        font-size: 12px;
        gap: 2px;
    }
=======
>>>>>>> Stashed changes
}

@media (max-width: 360px) {
    .category-grid-container {
        padding: 18px 12px;
        margin: 12px 8px;
    }
    
    .category-grid {
        gap: 18px 12px;
        max-width: 320px;
    }
    
    .category-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-label {
        font-size: 11px;
    }
<<<<<<< Updated upstream
    
    .top-banner-section {
        height: 180px;
    }
    
    .banner-title {
        font-size: 1.3rem;
    }
    
    .banner-subtitle {
        font-size: 0.85rem;
    }

    .banner-content {
        padding: 0 0.5rem;
    }
}

/* ===== CARD CONFLICT RESOLUTION ===== */
/* Override framework.css card styles for Bootstrap compatibility */
.card {
    background-color: #fff !important;
    border: 1px solid rgba(0,0,0,.125) !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075) !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
}

.card-header {
    padding: 0.75rem 1rem !important;
    margin-bottom: 0 !important;
    background-color: rgba(0,0,0,.03) !important;
    border-bottom: 1px solid rgba(0,0,0,.125) !important;
    border-top-left-radius: calc(0.375rem - 1px) !important;
    border-top-right-radius: calc(0.375rem - 1px) !important;
    display: block !important;
    justify-content: unset !important;
    align-items: unset !important;
}

.card-header:first-child {
    border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0 !important;
}

.card-body {
    flex: 1 1 auto !important;
    padding: 1rem !important;
    color: inherit !important;
}

.card-footer {
    padding: 0.75rem 1rem !important;
    background-color: rgba(0,0,0,.03) !important;
    border-top: 1px solid rgba(0,0,0,.125) !important;
    border-bottom-left-radius: calc(0.375rem - 1px) !important;
    border-bottom-right-radius: calc(0.375rem - 1px) !important;
}

.card-title {
    margin-bottom: 0.5rem !important;
    border-bottom: none !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.card-text {
    margin-bottom: 1rem !important;
}

.card-img-top {
    width: 100% !important;
    border-top-left-radius: calc(0.375rem - 1px) !important;
    border-top-right-radius: calc(0.375rem - 1px) !important;
}

.card-img-bottom {
    width: 100% !important;
    border-bottom-left-radius: calc(0.375rem - 1px) !important;
    border-bottom-right-radius: calc(0.375rem - 1px) !important;
}

/* Specific overrides for our custom card styles */
.card-style {
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}

.card-style:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    text-decoration: none !important;
    color: inherit !important;
}

/* Background color overrides for specific card types */
.card.bg-primary,
.card-style.bg-primary {
    background-color: #007bff !important;
    color: white !important;
}

.card.bg-success,
.card-style.bg-success {
    background-color: #28a745 !important;
    color: white !important;
}

.card.bg-warning,
.card-style.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.card.bg-info,
.card-style.bg-info {
    background-color: #17a2b8 !important;
    color: white !important;
}

.card.bg-danger,
.card-style.bg-danger {
    background-color: #dc3545 !important;
    color: white !important;
}

.card.bg-default,
.card-style.bg-default {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

/* Card header overrides for colored backgrounds */
.card-header.bg-primary {
    background-color: #007bff !important;
    color: white !important;
    border-bottom-color: rgba(255,255,255,0.2) !important;
}

.card-header.bg-success {
    background-color: #28a745 !important;
    color: white !important;
    border-bottom-color: rgba(255,255,255,0.2) !important;
}

.card-header.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
    border-bottom-color: rgba(0,0,0,0.1) !important;
}

.card-header.bg-info {
    background-color: #17a2b8 !important;
    color: white !important;
    border-bottom-color: rgba(255,255,255,0.2) !important;
}

.card-header.bg-danger {
    background-color: #dc3545 !important;
    color: white !important;
    border-bottom-color: rgba(255,255,255,0.2) !important;
}

/* Ensure proper spacing and layout */
.bottom-20 {
    margin-bottom: 20px !important;
}

.bottom-15 {
    margin-bottom: 15px !important;
}

.bottom-10 {
    margin-bottom: 10px !important;
}

/* Text color overrides for colored cards */
.bg-primary .color-white,
.bg-success .color-white,
.bg-info .color-white,
.bg-danger .color-white {
    color: white !important;
}

.bg-warning .color-white {
    color: #212529 !important;
}

/* List group overrides */
.list-group {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.list-group-item {
    position: relative !important;
    display: block !important;
    padding: 0.75rem 1.25rem !important;
    margin-bottom: -1px !important;
    background-color: #fff !important;
    border: 1px solid rgba(0,0,0,.125) !important;
}

.list-group-item:first-child {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.list-group-item:last-child {
    margin-bottom: 0 !important;
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

.list-group-item.active {
    z-index: 2 !important;
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
}

/* Navigation uppercase styling */
.navupercase {
    text-transform: uppercase !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
}

/* Responsive adjustments for cards */
@media (max-width: 768px) {
    .card {
        margin-bottom: 0.75rem !important;
    }
    
    .card-body {
        padding: 0.75rem !important;
    }
    
    .card-header {
        padding: 0.5rem 0.75rem !important;
    }
    
    .card-footer {
        padding: 0.5rem 0.75rem !important;
    }
}

/* Places Around City Section */
.places-around-city-section {
    background: var(--light-color);
}

/* Theme City Card Universal */
.theme-city-card-universal {
    background: var(--light-color);
}

/* Theme Attraction Card Universal */
.theme-attraction-card-universal {
    background: var(--light-color);
}

/* ===== ENHANCED MOBILE APP CARD DESIGN ===== */

/* Mobile Filter Section - App Style */
.mobile-filter-section {
    background: #ffffff;
    padding: 20px 16px;
    margin: 0 16px 24px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-header {
    margin-bottom: 20px;
}

.filter-header h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-header h3 i {
    color: #dc2626;
    font-size: 16px;
}

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

.filter-btn {
    background: #f8f9fa;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    transform: translateY(-1px);
}

.filter-btn.active::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.filter-btn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.filter-btn:hover i {
    transform: scale(1.1);
}

.filter-btn.active i {
    transform: scale(1.1);
}

/* Zone-specific button colors */
.filter-btn[data-filter=".East"]:hover {
    border-color: #22c55e;
    color: #22c55e;
    background: #f0fdf4;
}

.filter-btn[data-filter=".West"]:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}

.filter-btn[data-filter=".North"]:hover {
    border-color: #a855f7;
    color: #a855f7;
    background: #faf5ff;
}

.filter-btn[data-filter=".South"]:hover {
    border-color: #f59e0b;
    color: #f59e0b;
    background: #fffbeb;
}

.filter-btn[data-filter=".North-East"]:hover {
    border-color: #ec4899;
    color: #ec4899;
    background: #fdf2f8;
}

/* Enhanced Mobile App Card Design */
.office-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.office-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 80px;
}

.office-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.office-location {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.office-location i {
    font-size: 18px;
    opacity: 0.95;
    color: #ffffff;
}

.zone-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.zone-badge.East { 
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.4);
}
.zone-badge.West { 
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.4);
}
.zone-badge.North { 
    background: rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.4);
}
.zone-badge.South { 
    background: rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.4);
}
.zone-badge.North-East { 
    background: rgba(236, 72, 153, 0.25);
    border-color: rgba(236, 72, 153, 0.4);
}

.office-content {
    padding: 24px;
}

.office-title {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.office-title h4 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.office-personnel {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.office-personnel small {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
    font-style: italic;
}

.office-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.office-address i {
    color: #dc2626;
    margin-top: 18px;
    font-size: 18px;
    flex-shrink: 0;
}

.office-address span {
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    border-color: #dc2626;
    background: #fef2f2;
    transform: translateX(4px);
}

.contact-item i {
    color: #dc2626;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 2px;
}

.contact-item a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
    word-break: break-all;
    line-height: 1.4;
}

.contact-item a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.contact-item span {
    color: #475569;
    font-weight: 500;
    font-size: 15px;
}

.office-actions {
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    gap: 16px;
    justify-content: center;
    border-top: 1px solid #e2e8f0;
}

.action-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    position: relative;
    overflow: hidden;
    flex-direction: row;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.action-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.action-btn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.action-btn:hover i {
    transform: scale(1.1);
}

.email-btn {
    background: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.email-btn:hover {
    background: #047857;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}

/* Tourism Offices Grid - Enhanced Mobile App Style */
.tourism-offices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .mobile-filter-section {
        margin: 0 24px 32px 24px;
        padding: 24px 20px;
    }
    
    .filter-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .tourism-offices-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 24px;
    }
    
    .office-content {
        padding: 28px;
    }
    
    .office-header {
        padding: 24px 28px;
    }
}

@media (min-width: 1024px) {
    .filter-buttons {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .tourism-offices-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
}

/* Animation for Filter Changes */
.isotopeSelector {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.isotopeSelector.hidden {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    pointer-events: none;
}

/* Loading State */
.tourism-offices-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
}

.empty-state i {
    font-size: 80px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.empty-state h3 {
    color: #374151;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.empty-state p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Listing Page Container Styles */
.listing-container {
    background: var(--light-color);
}

.themes-container {
    background: var(--light-color);
}

/* ==============================================
   STD CODES PAGE - ENHANCED STYLING
   ============================================== */

/* AJAX Results Styling */
.ajax-results {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e1e5e9;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ajax-results.show {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

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

.ajax-results .success {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    margin: 0 15px 25px 15px;
    position: relative;
    overflow: hidden;
}

.ajax-results .success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ajax-results .success h4 {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.ajax-results .success .result-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: bounceIn 0.8s ease-out 0.2s both;
}

.ajax-results .success p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: white;
}

.ajax-results .success p:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.ajax-results .success strong {
    color: white;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.result-value {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    text-align: center;
    min-width: 80px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.result-value:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.result-value:active {
    transform: translateY(-1px) scale(1.02);
}

/* EasyAutocomplete Enhanced Styling */
.easy-autocomplete {
    position: relative !important;
    width: 100% !important;
}

.easy-autocomplete * {
    list-style: none !important;
}

.easy-autocomplete input {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    width: 100% !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
}

.easy-autocomplete input:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

.easy-autocomplete ul {
    background: #fff !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    margin: 2px 0 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    min-width: 100% !important;
    text-indent: 0 !important;
}

.easy-autocomplete ul,
.easy-autocomplete ul li,
.easy-autocomplete ul li:before,
.easy-autocomplete ul li:after {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
}

.easy-autocomplete ul li {
    padding: 12px 16px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: block !important;
    color: #333 !important;
    font-size: 14px !important;
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    background: #fff !important;
    margin: 0 !important;
    text-indent: 0 !important;
    position: relative !important;
}

.easy-autocomplete ul li:last-child {
    border-bottom: none !important;
    border-radius: 0 0 6px 6px !important;
}

.easy-autocomplete ul li:hover,
.easy-autocomplete ul li.eac-sel,
.easy-autocomplete ul li.selected {
    background: #667eea !important;
    color: white !important;
}

.easy-autocomplete ul li::before,
.easy-autocomplete ul li::after {
    display: none !important;
    content: none !important;
}

.easy-autocomplete ul li::marker {
    display: none !important;
    content: none !important;
}

.easy-autocomplete ul li {
    background-image: none !important;
    background: #fff !important;
}

.easy-autocomplete ul li {
    margin-left: 0 !important;
    padding-left: 16px !important;
}

/* Animation keyframes */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ajax-results .success {
        margin: 0 10px 20px 10px;
        padding: 25px 20px;
    }
    
    .ajax-results .success p {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ajax-results .success strong {
        font-size: 14px;
    }
    
    .result-value {
        font-size: 18px;
        padding: 10px 20px;
    }
}

.places-container {
    background: var(--light-color);
}

.places-around-container {
    background: var(--light-color);
}

.news-container {
    background: var(--light-color);
}

.article-container {
    background: var(--light-color);
}

/* ==============================================
   FOOTER CSS CONFLICTS RESOLUTION
   ============================================== */

/* Override festival-page-header styles for footer paragraphs */
.footer .footer-text,
.footer .footer-copyright {
    text-align: center !important;
    color: inherit !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    display: block !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.footer .footer-text {
    font-size: 14px !important;
    margin-bottom: 5px !important;
}

.footer .footer-copyright {
    font-size: 12px !important;
}

/* ==============================================
   WEB STORIES PAGE STYLING
   ============================================== */

/* Web Story Cards - Mobile Optimized */
.web-stories-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    padding: 20px 0 !important;
}

.web-story-card {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    height: 480px !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 0 !important;
}

.web-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.web-story-card .web-story-image-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.web-story-card .web-story-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.web-story-card:hover .web-story-image {
    transform: scale(1.05);
}

.web-story-card .story-badge {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(0,0,0,0.7) !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 10 !important;
}

.web-story-card .story-category {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background: rgba(255,255,255,0.9) !important;
    color: #333 !important;
    padding: 4px 10px !important;
    border-radius: 15px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 10 !important;
}

.web-story-card .web-story-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)) !important;
    padding: 30px 20px 20px !important;
    color: white !important;
    z-index: 5 !important;
}

.web-story-card .web-story-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.web-story-card .web-story-description {
    font-size: 14px !important;
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}

.web-story-card .web-story-meta {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 12px !important;
    color: rgba(255,255,255,0.8) !important;
    margin-top: auto !important;
}

.web-story-card .story-date {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.web-story-card .story-read-time {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.web-story-card .story-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
    height: 100% !important;
}

.story-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.web-story-card .read-more-btn {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    background: rgba(255,255,255,0.9) !important;
    color: #333 !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    opacity: 0 !important;
    transform: translateY(10px) !important;
    transition: all 0.3s ease !important;
    z-index: 15 !important;
}

.web-story-card:hover .read-more-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.web-story-card .read-more-btn:hover {
    background: white !important;
    color: #333 !important;
    text-decoration: none !important;
}

/* Load more button styling */
.load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    margin: 20px auto;
    display: block;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.no-stories {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-stories i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .web-stories-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
        gap: 15px !important;
        padding: 15px 0 !important;
    }
    
    .web-story-card {
        height: 420px !important;
    }
    
    .web-story-content {
        padding: 25px 15px 15px !important;
    }
    
    .web-story-title {
        font-size: 18px !important;
    }
    
    .web-story-description {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .web-stories-container {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .web-story-card {
        height: 400px !important;
    }
    
    .web-story-content {
        padding: 20px 15px 15px !important;
    }
    
    .web-story-title {
        font-size: 16px !important;
    }
}

/* ==============================================
   FESTIVAL DETAILS PAGE STYLING
   ============================================== */

/* Festival Details Page - Mobile Optimization CSS */

/* ===== Critical Above-the-Fold Styles for LCP ===== */
.festival-details-page .article-header {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 0 !important; /* Remove border radius for festival details */
    margin-bottom: 20px;
}

.festival-details-page .article-card {
    margin-bottom: 20px;
}

.festival-details-page .p-3 {
    padding: 1rem;
}

.festival-details-page .font-14 {
    font-size: 14px;
    line-height: 1.5;
}

.festival-details-page .article-meta {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.festival-details-page .font-700 {
    font-weight: 700;
}

.festival-details-page .font-20 {
    font-size: 20px;
    line-height: 1.3;
}

.festival-details-page .reading-time-box {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

.festival-details-page .reading-time-box p {
    margin-bottom: 15px;
}

/* ===== Breadcrumb Navigation ===== */
.festival-details-page .breadcrumb-nav {
    padding: 10px 0;
}

.festival-details-page .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.festival-details-page .breadcrumb-item {
    display: inline-block;
}

.festival-details-page .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    margin: 0 8px;
}

.festival-details-page .breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.festival-details-page .breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.festival-details-page .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Bottom Breadcrumb Navigation */
.festival-details-page .breadcrumb-nav-bottom {
    padding: 20px 0;
    margin-top: 30px;
}

.festival-details-page .breadcrumb-nav-bottom .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: hidden;
}

.festival-details-page .breadcrumb-nav-bottom .breadcrumb-item {
    display: inline-block;
    white-space: nowrap;
}

.festival-details-page .breadcrumb-nav-bottom .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    margin: 0 8px;
    font-weight: normal;
}

.festival-details-page .breadcrumb-nav-bottom .breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
}

.festival-details-page .breadcrumb-nav-bottom .breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.festival-details-page .breadcrumb-nav-bottom .breadcrumb-item.active {
    color: #333333;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: inline-block;
}

/* Gallery Optimization */
.festival-details-page .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.festival-details-page .gallery-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

.festival-details-page .gallery .show-gallery {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.festival-details-page .gallery .show-gallery:hover {
    transform: translateY(-5px);
}

.festival-details-page .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Festival Cards Optimization */
.festival-details-page .festival-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    padding: 0;
    margin: 0;
    background: transparent;
}

.festival-details-page .festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.festival-details-page .festival-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px;
}

.festival-details-page .festival-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.festival-details-page .festival-card:hover .festival-card-image img {
    transform: scale(1.05);
}

/* Festival Card Overlay */
.festival-details-page .festival-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 15px;
    z-index: 2;
}

.festival-details-page .festival-meta-overlay {
    color: white;
    font-size: 12px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.festival-details-page .festival-meta-overlay i {
    color: white;
    opacity: 0.9;
}

.festival-details-page .festival-meta-overlay strong {
    color: white;
    font-weight: 600;
}

.festival-details-page .festival-meta-overlay span,
.festival-details-page .festival-meta-overlay time {
    color: white;
    opacity: 0.9;
}

/* Typography Improvements */
.festival-details-page .font-14 {
    font-size: 14px !important;
    line-height: 1.5;
}

.festival-details-page .font-17 {
    font-size: 17px !important;
    line-height: 1.4;
}

.festival-details-page .font-18 {
    font-size: 18px !important;
    line-height: 1.4;
}

.festival-details-page .font-20 {
    font-size: 20px !important;
    line-height: 1.3;
}

/* Content Spacing */
.festival-details-page .article-meta span {
    display: inline;
    margin-right: 15px;
    font-size: 14px;
}

/* Social Icons */
.festival-details-page .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.festival-details-page .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.festival-details-page .social-icons a:hover {
    transform: scale(1.1);
}

.festival-details-page .facebook-bg {
    background: #1877f2;
    color: white;
}

.festival-details-page .twitter-bg {
    background: #1da1f2;
    color: white;
}

.festival-details-page .pinterest-bg {
    background: #bd081c;
    color: white;
}

/* Tags Styling */
.festival-details-page .color-highlight {
    color: #007bff !important;
    text-decoration: none;
    font-weight: 500;
}

.festival-details-page .color-highlight:hover {
    color: #0056b3 !important;
    text-decoration: underline;
}

/* Section Headers */
.festival-details-page h2.font-700 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.festival-details-page h4.bolder {
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

/* Decoration Elements */
.festival-details-page .decoration {
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 30px 0;
}

.festival-details-page .deco-thin {
    height: 2px;
    background: #007bff;
    margin: 20px auto;
    width: 60px;
}

/* Pagination Styling */
.festival-details-page .pagination-container {
    margin: 30px 0;
    padding: 0 15px;
}

.festival-details-page .pagination {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.festival-details-page .pagination .page-item {
    margin: 0;
    list-style: none;
}

.festival-details-page .pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    margin: 0;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.festival-details-page .pagination .page-link:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}

.festival-details-page .pagination .page-item.active .page-link {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
}

.festival-details-page .pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
}

/* Loading States */
.festival-details-page .preload-image {
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* CLS Prevention */
.festival-details-page .festival-card {
    min-height: 280px;    
}

.festival-details-page .gallery .show-gallery {
    min-height: 250px;    
}

.festival-details-page img[loading="lazy"] {
    background: #f0f0f0;
}

.festival-details-page .article-meta {
    min-height: 60px;    
}

.festival-details-page .border.border-1.border-solid.mx-2.mb-4.border-theme {
    min-height: 300px;    
}

/* Responsive Design */
@media (max-width: 768px) {
    .festival-details-page .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .festival-details-page .article-header {
        height: 250px;
    }
    
    .festival-details-page .festival-card-overlay {
        padding: 12px;
    }
    
    .festival-details-page .festival-meta-overlay {
        font-size: 11px;
        gap: 8px;
    }
    
    .festival-details-page .social-icons {
        gap: 10px;
    }
    
    .festival-details-page .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .festival-details-page .article-meta {
        padding: 12px;
    }
    
    .festival-details-page .article-meta span {
        display: inline;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .festival-details-page .breadcrumb-nav-bottom {
        padding: 15px 0;
    }
    
    .festival-details-page .breadcrumb-nav-bottom .breadcrumb {
        font-size: 13px;
    }
    
    .festival-details-page .breadcrumb-nav-bottom .breadcrumb-item.active {
        max-width: 150px;
    }
    
    .festival-details-page .pagination-container {
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .festival-details-page .pagination .page-link {
        min-width: 35px;
        height: 35px;
        padding: 6px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .festival-details-page .article-header {
        height: 200px;
    }
    
    .festival-details-page .festival-card-overlay {
        padding: 10px;
    }
    
    .festival-details-page .festival-meta-overlay {
        font-size: 10px;
        gap: 6px;
    }
    
    .festival-details-page .gallery img {
        height: 150px;
    }
    
    .festival-details-page .font-14 {
        font-size: 14px !important;
    }
    
    .festival-details-page .font-17 {
        font-size: 17px !important;
    }
    
    .festival-details-page .font-18 {
        font-size: 18px !important;
    }
    
    .festival-details-page .font-20 {
        font-size: 20px !important;
    }
    
    .festival-details-page .breadcrumb-nav-bottom {
        padding: 10px 0;
    }
    
    .festival-details-page .breadcrumb-nav-bottom .breadcrumb {
        font-size: 12px;
    }
    
    .festival-details-page .breadcrumb-nav-bottom .breadcrumb-item.active {
        max-width: 120px;
    }
    
    .festival-details-page .pagination-container {
        margin: 15px 0;
        padding: 0 5px;
    }
    
    .festival-details-page .pagination {
        gap: 3px;
    }
    
    .festival-details-page .pagination .page-link {
        min-width: 30px;
        height: 30px;
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .festival-details-page .festival-card,
    .festival-details-page .gallery .show-gallery,
    .festival-details-page .social-icons a {
        transition: none;
    }
    .festival-details-page .festival-card:hover,
    .festival-details-page .gallery .show-gallery:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .festival-details-page .card-overlay {
        background: rgba(0, 0, 0, 0.8) !important;
    }
    
    .festival-details-page .article-meta {
        background: #ffffff;
        border: 2px solid #000000;
    }
}

/* ===== RELATED FESTIVALS SECTION - USING EXISTING THEME CSS ===== */
.festival-details-page .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.festival-details-page .card-grid .article-card {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.festival-details-page .card-grid .article-card .article-header {
    height: 180px;
    border-radius: 0;
}

.festival-details-page .card-grid .article-card .article-image {
    height: 100%;
    object-fit: cover;
}

/* Enhanced overlay styling for better title visibility */
.festival-details-page .card-grid .article-card .festival-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 15px;
    color: white;
    border-radius: 0 0 8px 8px;
}

.festival-details-page .card-grid .article-card .festival-title-overlay h3 {
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-weight: 700;
    line-height: 1.2;
}

.festival-details-page .card-grid .article-card .festival-title-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.festival-details-page .card-grid .article-card .festival-title-overlay i {
    margin-right: 3px;
}

/* Responsive for festivals - Always 2 cards per row on mobile */
@media (max-width: 768px) {
    .festival-details-page .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .festival-details-page .card-grid .article-card .article-header {
        height: 160px;
    }
    
    .festival-details-page .card-grid .article-card .festival-title-overlay h3 {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 3px;
    }
    
    .festival-details-page .card-grid .article-card .festival-title-overlay p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .festival-details-page .card-grid {
        gap: 12px;
        padding: 0 8px;
    }
    
    .festival-details-page .card-grid .article-card .article-header {
        height: 140px;
    }
    
    .festival-details-page .card-grid .article-card .festival-title-overlay {
        padding: 10px;
    }
    
    .festival-details-page .card-grid .article-card .festival-title-overlay h3 {
        font-size: 13px;
        line-height: 1.1;
    }
    
    .festival-details-page .card-grid .article-card .festival-title-overlay p {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .festival-details-page .card-grid {
        gap: 10px;
        padding: 0 5px;
    }
    
    .festival-details-page .card-grid .article-card .article-header {
        height: 120px;
    }
    
    .festival-details-page .card-grid .article-card .festival-title-overlay {
        padding: 8px;
    }
    
    .festival-details-page .card-grid .article-card .festival-title-overlay h3 {
        font-size: 12px;
        line-height: 1.1;
    }
    
    .festival-details-page .card-grid .article-card .festival-title-overlay p {
        font-size: 9px;
    }
}<｜tool▁calls▁end｜>



=======
}

>>>>>>> Stashed changes
