/* Premium Design System for WorldExpo.in */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-navy: #1B4DFF;
    --primary-accent: #EE4B2B; /* Accent Red */
    --text-on-accent: #FAF3DD; /* Requested Light Cream Color */
    --navy-blue: #0A2647;
    --industrial-orange: #FF851B;
    --vibrant-orange: #FF6d52;
    --surface-bg: #f8f9fa;
    --surface-container: #edeeef;
    --surface-lowest: #ffffff;
    --text-main: #2D3436;
    --text-muted: #636e72;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --light-blue-bg: #E3F2FD;
}

/* Removed global border-radius reset to allow for premium rounded elements */

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--surface-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, h3, .manrope {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

/* Hero Section Refinement */
.premium-hero {
    position: relative;
    padding: 110px 0 80px; /* Reduced by 20% */
    background: linear-gradient(rgba(27, 77, 255, 0.3), rgba(0, 55, 255, 0.3)), url('../img/ban.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.premium-hero h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-premium {
    padding: 0.75rem 2.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-premium-primary {
    background: #ff7c40; /* High-impact Orange for Hero Banner contrast */
    color: white;
}

.btn-premium-primary:hover {
    background: #f56d2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 124, 64, 0.3);
}

.btn-premium-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Statistics Glass Bar */
.stats-bar-container {
    max-width: 1200px;
    margin: -45px auto 0;
    position: relative;
    z-index: 10;
}

.stats-glass {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 1); /* Solid white as per reference */
    border-radius: 0; /* Sharp edges */
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #eaeaea;
}

.stat-val {
    display: block;
    font-size: 1.8rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.stat-lbl {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Headlines */
.section-headline {
    text-align: center;
    margin: 80px 0 40px;
}

.section-headline h2 {
    font-size: 2.25rem;
    color: var(--primary-navy);
}

/* Hot Shows Grid */
.hot-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.show-card {
    background: var(--surface-lowest);
    border-radius: 0; /* Sharp edges */
    padding: 1.5rem;
    box-shadow: none; /* Removed default shadow */
    transition: none; /* Removed hover transitions */
    border: 1px solid #eaeaea;
}

.show-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--primary-navy);
}

.show-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0; /* Sharp edges */
    margin-bottom: 1.25rem;
}

.show-details h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.show-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Premium Footer Styling - Deep Blue Grey */
.foot {
    background: #131B2E; /* Deep Blue Grey */
    padding: 80px 0 40px;
    border-top: 2px solid var(--primary-navy);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
}

.fot-mid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
}

.fot-a {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 60px;
}

.fot-a dl dt {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: white; /* Sharp White for headers */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fot-a dl dd {
    margin: 0 0 0.75rem 0;
}

.fot-a dl dd a {
    color: rgba(255, 255, 255, 0.65); /* Soft white for secondary links */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.fot-a dl dd a:hover {
    color: white;
    padding-left: 5px;
}

.fot-b {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.foot-logo img {
    max-width: 180px;
    filter: brightness(0) invert(1); /* Make logo white for dark theme */
    opacity: 0.9;
    transition: all 0.3s;
}

.foot-logo img:hover {
    opacity: 1;
}

/* Exhibition Detail Improvements */
.yd-text h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.yd-text a {
    display: inline-block;
    padding: 8px 25px; /* Reduced height as requested */
    background: var(--primary-accent);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.2s;
    border: none;
    border-radius: 4px;
}

.yd-text a:last-child {
    background: #f1f3f5;
    color: var(--text-muted) !important;
    border: 1px solid #dee2e6;
}

.yd-text a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 77, 255, 0.2);
}

/* Root reset for REM stability when bootstrap-3 is loaded */
html {
    font-size: 16px !important;
}

/* Detail Navigation Secondary Tabs Fixed */
.details-left {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    background: #f8f9fa;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    width: 100%;
    -ms-overflow-style: none; /* Hide scrollbar for clean look */
    scrollbar-width: none;
}

.details-left::-webkit-scrollbar {
    display: none;
}

.details-left a {
    padding: 18px 16px; /* Slightly reduced padding */
    text-decoration: none;
    color: var(--text-muted) !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px; /* Slightly reduced gap */
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.details-left a i {
    font-size: 1.1rem;
    color: var(--primary-accent) !important; /* Force Icons to be Accent Color */
}

/* ALL TITLES ACCENT COLOR */
.right-tit p, .xq-text, .Introduction-tit, .section-headline, .details-titBox h2, .company-title .tit-01 {
    color: var(--primary-accent) !important;
}

/* SPECIAL CASE: TEXT ON RED BACKGROUND */
.zh-box h2, .zh-box p, .text-yd, .text-yd font, .step-round li.active a, .step-round li.active a:before {
    color: var(--text-on-accent) !important;
}

/* ALL BUTTONS ACCENT COLOR & CONSISTENCY (Except Premium Hero Buttons) */
.custom-tj, 
.custom-button, 
.btn-submit, 
.book, 
.btn-nav-partner, 
.add-qk, 
.clear-qk, 
.bt-yd,
.set-link a:last-child,
.btn-nav-login:hover {
    background-color: var(--primary-accent) !important;
    border-color: var(--primary-accent) !important;
    color: var(--text-on-accent) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border-radius: 6px !important; /* Standardize rounding */
}

.btn-nav-login:hover {
    background: var(--primary-accent) !important;
    color: #fff !important;
    border-color: var(--primary-accent) !important;
}

.details-left a:hover {
    color: var(--primary-navy) !important;
    background: rgba(27, 77, 255, 0.05);
}

.details-left a.left-actvie {
    border-bottom: 3px solid var(--primary-navy);
    color: var(--primary-navy) !important;
    background: white;
}
.right-tit p, .xq-text, .Introduction-tit {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #EE4B2B !important; /* Red accent color */
    border-left: 5px solid #EE4B2B !important; /* Thick accent border */
    padding-left: 55px !important; /* Space for icon */
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.1rem !important;
    margin-bottom: 25px;
    background: none !important;
    display: flex;
    align-items: center;
    height: 40px;
}

/* Red Accent Icons for Titles */
.right-tit p:before, .xq-text:before, .Introduction-tit:before {
    font-family: 'FontAwesome';
    position: absolute;
    left: 15px;
    font-size: 1.4rem;
    color: #EE4B2B;
}

.xq-text:before { content: "\f05a"; } /* info-circle */
.expo-jj:before { content: "\f036"; } /* align-left */
.expo-fw:before { content: "\f0ca"; } /* list-ul */
.expo-adress:before { content: "\f041"; } /* map-marker */
.right-tit p:before { content: "\f009"; } /* th-large for related */

/* Clear legacy icons and prepare for Font Awesome */
.expo-jj, .expo-fw, .expo-adress {
    background: none !important;
    padding-left: 55px !important;
}

/* Secondary Nav Tabs in detail page */
.details-titBox {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.details-mid li a {
    color: var(--text-muted) !important;
    font-weight: 600;
    transition: all 0.2s;
}

.details-mid li.active a, .details-mid li a:hover {
    color: var(--primary-navy) !important;
}

.details-mid li.active {
    border-bottom: 2px solid var(--primary-navy);
}
.ban-input-lmy {
    border: 1px solid #ddd;
    border-radius: 4px; /* Maintain sharpish but professional */
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.ban-btn-lmy {
    background: var(--primary-accent) !important;
    color: var(--text-on-accent) !important;
    border-radius: 4px;
    font-weight: 600;
}

.cSel {
    background: var(--primary-navy) !important;
    color: white !important;
    border-radius: 4px !important;
    padding: 2px 12px !important;
}

.expo-type a {
    padding: 10px 25px;
    border: 1px solid #eee;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    border-radius: 0 !important;
}

.expo-type a:hover {
    background: #E3F2FD;
}

.expo-type a.active, .expo-type a#hot {
    background: var(--light-blue-bg) !important;
    color: var(--primary-navy) !important;
    border-color: var(--primary-navy) !important;
}

.look {
    background: var(--primary-navy) !important;
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.list-text h3 a {
    color: var(--primary-navy) !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.list-text span {
    color: var(--text-muted) !important;
}

.searchPoz b {
    color: var(--primary-navy) !important;
}

.searchPoz i.cite {
    color: var(--primary-navy); /* Changed from orange to blue as requested */
    font-weight: 600;
    cursor: pointer;
}
