/* ============================================
   EXHIBIT PAGE - COMPLETE RESPONSIVE CSS
   Version: 2.1 - FIXED HORIZONTAL OVERFLOW
============================================ */

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    --primary-color: #58c0ef;
    --secondary-color: #0e8296;
    --dark-color: #1a1a2e;
    --text-gray: #666;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* ============================================
   CRITICAL OVERFLOW FIX
============================================ */
html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* ============================================
   EXHIBIT PAGE - BREADCRUMB SECTION
   Professional Custom CSS
============================================ */

/* ============================================
   1. BREADCRUMB WRAPPER - HERO STYLE
============================================ */
.breadcumb-wrapper {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay Effect */
.sf-breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 2;
    will-change: opacity;
}

.breadcumb-wrapper .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   2. BREADCRUMB CONTENT
============================================ */
.sf-breadcrumb-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Subtitle Badge */
.sf-breadcrumb-subtitle {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

/* Main Title */
.sf-breadcrumb-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* ============================================
   3. BREADCRUMB NAVIGATION - BUTTONS
============================================ */
.sf-breadcrumb-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Button Base Styles */
.sf-btn-primary,
.sf-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Primary Button (White) */
.sf-btn-primary {
    background: #fff;
    color: #58c0ef;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.sf-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(88,192,239,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.sf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
    color: #58c0ef;
}

.sf-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.sf-btn-primary i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sf-btn-primary:hover i {
    transform: scale(1.2);
}

/* Secondary Button (Transparent) */
.sf-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
}

.sf-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sf-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.sf-btn-secondary:hover::before {
    transform: scaleX(1);
}

.sf-btn-secondary i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.sf-btn-secondary:hover i {
    transform: translateY(3px);
}

/* Button Text */
.sf-btn-primary span,
.sf-btn-secondary span {
    position: relative;
    z-index: 1;
}

/* ============================================
   4. ANIMATIONS
============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   5. RESPONSIVE DESIGN
============================================ */

/* Large Tablets (Portrait) */
@media (max-width: 991px) {
    .breadcumb-wrapper {
        min-height: 500px;
    }
    
    .sf-breadcrumb-content {
        padding: 60px 20px;
    }
    
    .sf-breadcrumb-title {
        font-size: 42px;
    }
    
    .sf-breadcrumb-nav {
        gap: 16px;
        margin-top: 25px;
    }
    
    .sf-btn-primary,
    .sf-btn-secondary {
        padding: 16px 35px;
        font-size: 15px;
    }
}

/* Tablets & Small Laptops */
@media (max-width: 767px) {
    .breadcumb-wrapper {
        min-height: 450px;
    }
    
    .sf-breadcrumb-content {
        padding: 50px 15px;
    }
    
    .sf-breadcrumb-subtitle {
        font-size: 12px;
        padding: 6px 20px;
        letter-spacing: 1.5px;
    }
    
    .sf-breadcrumb-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .sf-breadcrumb-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 30px;
    }
    
    .sf-btn-primary,
    .sf-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .sf-btn-primary i,
    .sf-btn-secondary i {
        font-size: 15px;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .breadcumb-wrapper {
        min-height: 400px;
    }
    
    .sf-breadcrumb-content {
        padding: 40px 15px;
    }
    
    .sf-breadcrumb-subtitle {
        font-size: 11px;
        padding: 6px 18px;
        margin-bottom: 15px;
    }
    
    .sf-breadcrumb-title {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .sf-breadcrumb-nav {
        gap: 12px;
        margin-top: 25px;
    }
    
    .sf-btn-primary,
    .sf-btn-secondary {
        padding: 14px 25px;
        font-size: 14px;
        gap: 10px;
    }
    
    .sf-btn-primary i,
    .sf-btn-secondary i {
        font-size: 14px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .sf-breadcrumb-title {
        font-size: 24px;
    }
    
    .sf-btn-primary,
    .sf-btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ============================================
   6. ACCESSIBILITY & PERFORMANCE
============================================ */

/* Focus States for Keyboard Navigation */
.sf-btn-primary:focus,
.sf-btn-secondary:focus {
    outline: 3px solid rgba(255,255,255,0.8);
    outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .sf-breadcrumb-subtitle,
    .sf-breadcrumb-title,
    .sf-breadcrumb-nav {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .sf-btn-primary,
    .sf-btn-secondary,
    .sf-btn-primary i,
    .sf-btn-secondary i,
    .sf-btn-primary::before,
    .sf-btn-secondary::before {
        transition: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .sf-breadcrumb-overlay {
        background: rgba(0,0,0,0.9);
    }
    
    .sf-btn-primary {
        border: 2px solid #000;
    }
    
    .sf-btn-secondary {
        border: 2px solid #fff;
    }
}

/* Print Styles */
@media print {
    .breadcumb-wrapper {
        min-height: auto;
        background: none !important;
    }
    
    .sf-breadcrumb-overlay {
        display: none;
    }
    
    .sf-breadcrumb-nav {
        display: none;
    }
    
    .sf-breadcrumb-title {
        color: #000;
        text-shadow: none;
    }
}



/* ============================================
   2. EXHIBITION OPPORTUNITY SECTION
============================================ */
.sf-exhibit-opportunity {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    width: 100%;
}

/* Background Decorations - FIXED OVERFLOW */
.sf-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sf-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.sf-decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #58c0ef 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.sf-decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #0e8296 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Container & Grid - FIXED WIDTH */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: calc(100% + 30px);
    margin-left: -15px;
}

.row.align-items-center {
    align-items: center;
}

.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.mb-4 { margin-bottom: 30px; }
.mb-lg-0 { margin-bottom: 0; }

/* Images Section - FIXED OVERFLOW */
.sf-exhibit-images-wrapper {
    position: relative;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.sf-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.sf-image-large {
    grid-column: 1 / 3;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 280px;
    width: 100%;
}

.sf-image-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88,192,239,0.1) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sf-image-large:hover::before {
    opacity: 1;
}

.sf-image-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.sf-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-image-large:hover img {
    transform: scale(1.05);
}

.sf-image-small {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
    width: 100%;
}

.sf-image-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88,192,239,0.1) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sf-image-small:hover::before {
    opacity: 1;
}

.sf-image-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.sf-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-image-small:hover img {
    transform: scale(1.05);
}

.sf-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88,192,239,0.2) 0%, rgba(14,130,150,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.sf-image-large:hover .sf-image-overlay,
.sf-image-small:hover .sf-image-overlay {
    opacity: 1;
}

.sf-image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 3px solid #58c0ef;
    border-radius: 20px;
    transform: translate(-20px, -20px);
    z-index: 0;
    opacity: 0.6;
}

/* BADGE - FIXED POSITION TO PREVENT OVERFLOW */
.sf-exhibit-badge {
    position: absolute;
    bottom: 14rem;
    right: 5rem;
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
    max-width: 180px;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.badge-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #58c0ef, #0e8296);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(88,192,239,0.3);
}

.badge-icon i {
    font-size: 26px;
    color: #fff;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.badge-number {
    color: #58c0ef;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    color: #666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Section */
.sf-exhibit-content {
    padding: 20px 0;
    width: 100%;
}

.sf-section-header {
    margin-bottom: 30px;
}

.sf-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.subtitle-icon {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.sf-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 15px;
}

.sf-title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.sf-description {
    text-align: justify;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.sf-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.benefit-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.sf-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88,192,239,0.3);
}

.sf-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88,192,239,0.4);
    color: #fff;
}

.sf-cta-button i {
    transition: transform 0.3s ease;
}

.sf-cta-button:hover i {
    transform: translateX(5px);
}

/* ============================================
   3. WHY EXHIBIT SECTION
============================================ */
.team-details {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    width: 100%;
}

.team-details .space {
    padding: 100px 0;
}

.title-area {
    margin-bottom: 30px;
}

.sec-subtitle {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(88,192,239,0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.sec-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.sec-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.sec-line-left {
    margin: 0;
}

.explore-text {
    text-align: justify;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.explore-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.explore-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

.explore-list ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-img {
    position: relative;
    width: 100%;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-description {
    margin-top: 80px;
    padding: 50px;
    background: var(--light-bg);
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
}

.team-description h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.title-divider2 {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-bottom: 25px;
}

.team-description p {
    text-align: justify;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.vs-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88,192,239,0.3);
}

.vs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88,192,239,0.4);
    color: #fff;
}

.vs-btn svg {
    transition: transform 0.3s ease;
}

.vs-btn:hover svg {
    transform: translateX(5px);
}

/* DECORATIONS - FIXED TO PREVENT OVERFLOW */
.exhibit-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.exhibit-decoration-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -100px;
    right: -150px;
}

.exhibit-decoration-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    bottom: -80px;
    left: -100px;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Large Desktop */
@media (max-width: 1400px) {
    .breadcumb-wrapper {
        min-height: 550px;
    }
    
    .breadcumb-menu li {
        font-size: 40px;
    }
    
    .sf-exhibit-opportunity {
        padding: 90px 0;
    }
    
    .sf-exhibit-badge {
        bottom: 12rem;
        right: 4rem;
    }
    
    .team-details {
        padding: 90px 0;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .breadcumb-wrapper {
        min-height: 500px;
    }
    
    .breadcumb-menu li {
        font-size: 38px;
        letter-spacing: 1.5px;
    }
    
    .sf-exhibit-opportunity {
        padding: 80px 0;
    }
    
    .sf-decoration-1 {
        width: 350px;
        height: 350px;
        right: -150px;
    }
    
    .sf-decoration-2 {
        width: 250px;
        height: 250px;
        left: -100px;
    }
    
    .sf-exhibit-badge {
        bottom: 10rem;
        right: 2rem;
        padding: 18px 22px;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .badge-icon i {
        font-size: 24px;
    }
    
    .badge-number {
        font-size: 26px;
    }
    
    .sf-title {
        font-size: 32px;
    }
    
    .team-details {
        padding: 80px 0;
    }
    
    .sec-title {
        font-size: 32px;
    }
    
    .exhibit-decoration-1 {
        right: -150px;
    }
    
    .exhibit-decoration-2 {
        left: -100px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .breadcumb-wrapper {
        min-height: 450px;
    }
    
    .breadcumb-content {
        padding: 35px 15px;
    }
    
    .breadcumb-menu li {
        font-size: 34px;
        letter-spacing: 1.2px;
    }
    
    .sf-exhibit-opportunity {
        padding: 70px 0;
    }
    
    .col-lg-6 {
        width: 100%;
    }
    
    .mb-4 {
        margin-bottom: 40px;
    }
    
    .sf-exhibit-images-wrapper {
        padding: 15px;
    }
    
    .sf-images-grid {
        gap: 15px;
    }
    
    .sf-image-large {
        min-height: 260px;
        border-radius: 16px;
    }
    
    .sf-image-small {
        min-height: 180px;
        border-radius: 12px;
    }
    
    .sf-exhibit-badge {
        bottom: 8rem;
        right: 2rem;
        padding: 16px 20px;
    }
    
    .badge-icon {
        width: 48px;
        height: 48px;
    }
    
    .badge-icon i {
        font-size: 22px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .badge-label {
        font-size: 11px;
    }
    
    .sf-decoration-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -120px;
    }
    
    .sf-decoration-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        left: -80px;
    }
    
    .sf-title {
        font-size: 28px;
    }
    
    .team-details {
        padding: 70px 0;
    }
    
    .sec-title {
        font-size: 28px;
    }
    
    .team-description {
        padding: 40px;
        margin-top: 60px;
    }
    
    .team-description h2 {
        font-size: 28px;
    }
    
    .exhibit-decoration-1 {
        width: 300px;
        height: 300px;
        right: -120px;
    }
    
    .exhibit-decoration-2 {
        width: 200px;
        height: 200px;
        left: -80px;
    }
}

/* Mobile - FIXED */
@media (max-width: 767px) {
    .breadcumb-wrapper {
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .breadcumb-content {
        padding: 30px 20px;
    }
    
    .breadcumb-menu {
        gap: 10px;
    }
    
    .breadcumb-menu li {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 0 3px 15px rgba(0,0,0,0.4);
        padding: 0 10px;
    }
    
    .sf-exhibit-opportunity {
        padding: 60px 0;
    }
    
    .row {
        margin: 0 -10px;
        width: calc(100% + 20px);
    }
    
    .col-lg-6 {
        padding: 0 10px;
    }
    
    .mb-4 {
        margin-bottom: 35px;
    }
    
    .sf-exhibit-images-wrapper {
        padding: 0;
        margin-bottom: 0;
    }
    
    .sf-images-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        position: relative;
    }
    
    .sf-image-large {
        grid-column: 1 / 3;
        min-height: 220px;
        border-radius: 12px;
    }
    
    .sf-image-large:hover {
        transform: none;
    }
    
    .sf-image-small {
        min-height: 160px;
        border-radius: 10px;
    }
    
    .sf-image-small:hover {
        transform: none;
    }
    
    .sf-image-frame {
        display: none;
    }
    
    .sf-exhibit-badge {
        position: absolute;
        bottom: 15px;
        right: 15px;
        left: auto;
        transform: none;
        padding: 10px 15px;
        gap: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        animation: none;
    }
    
    .badge-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    
    .badge-icon i {
        font-size: 20px;
    }
    
    .badge-number {
        font-size: 22px;
    }
    
    .badge-label {
        font-size: 10px;
    }
    
    .sf-decoration-1 {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
        opacity: 0.03;
    }
    
    .sf-decoration-2 {
        width: 150px;
        height: 150px;
        bottom: -60px;
        left: -60px;
        opacity: 0.03;
    }
    
    .sf-subtitle {
        font-size: 12px;
    }
    
    .sf-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .sf-description {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .benefit-item {
        font-size: 14px;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .benefit-icon {
        width: 22px;
        height: 22px;
    }
    
    .benefit-icon::after {
        font-size: 13px;
    }
    
    .sf-cta-button {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .team-details {
        padding: 60px 0;
    }
    
    .sec-subtitle {
        font-size: 12px;
        padding: 5px 16px;
    }
    
    .sec-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .explore-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .explore-list ul li {
        font-size: 14px;
        padding-left: 35px;
    }
    
    .explore-list ul li::before {
        width: 22px;
        height: 22px;
        font-size: 13px;
    }
    
    .about-img img {
        border-radius: 15px;
    }
    
    .team-description {
        padding: 30px 20px;
        margin-top: 50px;
        border-radius: 15px;
    }
    
    .team-description h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .team-description p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .vs-btn {
        padding: 14px 32px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .exhibit-decoration-1 {
        width: 250px;
        height: 250px;
        opacity: 0.03;
        right: -100px;
    }
    
    .exhibit-decoration-2 {
        width: 180px;
        height: 180px;
        opacity: 0.03;
        left: -70px;
    }
}

/* Extra Small Mobile - FIXED */
@media (max-width: 480px) {
    .breadcumb-wrapper {
        min-height: 300px;
    }
    
    .breadcumb-content {
        padding: 25px 15px;
    }
    
    .breadcumb-menu li {
        font-size: 24px;
        letter-spacing: 0.8px;
        text-shadow: 0 2px 12px rgba(0,0,0,0.5);
        padding: 0 8px;
    }
    
    .sf-exhibit-opportunity {
        padding: 50px 0;
    }
    
    .mb-4 {
        margin-bottom: 30px;
    }
    
    .sf-exhibit-images-wrapper {
        padding: 0;
        margin: 0;
    }
    
    .sf-images-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .sf-image-large {
        grid-column: 1 / 3;
        min-height: 200px;
        border-radius: 10px;
    }
    
    .sf-image-small {
        min-height: 140px;
        border-radius: 8px;
    }
    
    .sf-image-frame {
        display: none;
    }
    
    .sf-exhibit-badge {
        position: absolute;
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 8px;
        animation: none;
    }
    
    .badge-icon {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
    
    .badge-icon i {
        font-size: 18px;
    }
    
    .badge-number {
        font-size: 20px;
    }
    
    .badge-label {
        font-size: 9px;
    }
    
    .sf-decoration-1,
    .sf-decoration-2,
    .exhibit-decoration-1,
    .exhibit-decoration-2 {
        display: none;
    }
    
    .sf-subtitle {
        font-size: 11px;
    }
    
    .sf-title {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .sf-description {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .benefit-item {
        font-size: 13px;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .benefit-icon {
        width: 20px;
        height: 20px;
    }
    
    .benefit-icon::after {
        font-size: 12px;
    }
    
    .sf-cta-button {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .team-details {
        padding: 50px 0;
    }
    
    .sec-subtitle {
        font-size: 11px;
        padding: 4px 14px;
    }
    
    .sec-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .explore-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .explore-list ul li {
        font-size: 13px;
        padding-left: 32px;
        margin-bottom: 12px;
    }
    
    .explore-list ul li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .about-img img {
        border-radius: 12px;
    }
    
    .team-description {
        padding: 25px 18px;
        margin-top: 40px;
        border-radius: 12px;
    }
    
    .team-description h2 {
        font-size: 22px;
    }
    
    .team-description p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .vs-btn {
        padding: 12px 28px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

/* Disable Hover on Touch */
@media (hover: none) and (pointer: coarse) {
    .sf-image-large:hover,
    .sf-image-small:hover {
        transform: none;
    }
    
    .sf-image-large:hover img,
    .sf-image-small:hover img {
        transform: none;
    }
    
    .sf-image-large:hover::before,
    .sf-image-small:hover::before {
        opacity: 0;
    }
    
    .sf-image-large:hover .sf-image-overlay,
    .sf-image-small:hover .sf-image-overlay {
        opacity: 0;
    }
}

/* Print Styles */
@media print {
    .sf-exhibit-opportunity,
    .team-details {
        padding: 40px 0;
    }
    
    .sf-bg-decorations,
    .sf-image-frame,
    .sf-exhibit-badge,
    .exhibit-decoration {
        display: none !important;
    }
    
    .col-lg-6 {
        width: 100%;
        page-break-inside: avoid;
    }
    
    .sf-images-grid {
        break-inside: avoid;
    }
    
    .breadcumb-wrapper {
        min-height: 200px;
        background: #f8f9fa !important;
    }
    
    .breadcumb-wrapper::before {
        display: none;
    }
    
    .breadcumb-menu li {
        color: #000 !important;
        text-shadow: none;
        font-size: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    visibility: hidden;
}

.wow.fadeInUp,
.wow.fadeInLeft,
.wow.fadeInRight {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    visibility: visible;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInLeft {
    animation-name: fadeInLeft;
}

.wow.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}