/* ============================================
   EXHIBIT PAGE - SEAFOOD4AFRICA
   Custom CSS - Complete & Organized
============================================ */

/* ============================================
   1. BREADCRUMB SECTION
============================================ */
.breadcumb-wrapper {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(14,130,150,0.85) 0%, rgba(26,26,46,0.8) 100%); */
    z-index: 1;
}

.breadcumb-wrapper .container {
    position: relative;
    z-index: 2;
}

.breadcumb-content {
    text-align: center;
}

.breadcumb-menu-wrap {
    display: flex;
    justify-content: center;
}

.breadcumb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.breadcumb-menu li {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ============================================
   2. EXHIBITION OPPORTUNITY SECTION
============================================ */

.sf-exhibit-opportunity {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Background Decorations */
.sf-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.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 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row.align-items-center {
    align-items: center;
}

.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 15px;
}

.mb-4 { margin-bottom: 30px; }
.mb-lg-0 { margin-bottom: 0; }

/* ============================================
   3. IMAGES SECTION - 1 TOP + 2 BOTTOM
============================================ */

.sf-exhibit-images-wrapper {
    position: relative;
    padding: 20px;
}

.sf-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Large Image */
.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;
}

.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);
}

/* Small Images */
.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;
}

.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);
}

/* Image Overlay */
.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;
}

/* Decorative Frame */
.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;
}

/* Floating Badge */
.sf-exhibit-badge {
    position: absolute;
    bottom: 14rem;
    right: 10rem;
    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;
}

@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;
}

/* ============================================
   4. CONTENT SECTION
============================================ */

.sf-exhibit-content {
    padding: 0 20px;
}

.sf-section-header {
    margin-bottom: 25px;
}

.sf-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #58c0ef;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.subtitle-icon {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #58c0ef, #0e8296);
    border-radius: 2px;
}

.sf-title {
    color: #1a1a2e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.sf-title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #58c0ef, #0e8296);
    border-radius: 2px;
}

.sf-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* ============================================
   5. BENEFITS LIST - PURE CSS CHECKMARKS
============================================ */

.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;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-icon {
    min-width: 32px;
    max-width: 32px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #58c0ef, #0e8296);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(88,192,239,0.3);
    position: relative;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(88,192,239,0.4);
}

/* Pure CSS Checkmark */
.benefit-icon::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 7px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.benefit-item span {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
    padding-top: 2px;
}

/* ============================================
   6. CTA BUTTON
============================================ */

.sf-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #58c0ef 0%, #0e8296 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(88,192,239,0.35);
    position: relative;
    overflow: hidden;
}

.sf-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    transition: left 0.5s ease;
}

.sf-cta-button:hover::before {
    left: 100%;
}

.sf-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(88,192,239,0.45);
    color: #fff;
}

.sf-cta-button i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.sf-cta-button:hover i {
    transform: translateX(5px);
}

/* ============================================
   7. SECTION 2 - WHY EXHIBIT
============================================ */

.team-details {
    padding: 80px 0;
    position: relative;
}

.space {
    padding: 80px 0;
}

.bg-white {
    background-color: #ffffff;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* Title Area */
.title-area {
    margin-bottom: 25px;
}

.text-start {
    text-align: left;
}

.sec-subtitle {
    color: #0e8296;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.sec-title {
    color: #1a1a2e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.sec-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #58c0ef, #0e8296);
    margin: 20px 0 30px;
    border-radius: 2px;
}

.sec-line-left {
    margin-left: 0;
}

/* Explore Text & List */
.explore-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.explore-list {
    margin: 25px 0;
}

.explore-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.explore-list ul li {
    position: relative;
    padding-left: 40px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.explore-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #58c0ef, #0e8296);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(88,192,239,0.3);
    transition: all 0.3s ease;
}

.explore-list ul li::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 10px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    z-index: 1;
}

.explore-list ul li:hover {
    color: #0e8296;
    padding-left: 45px;
}

.explore-list ul li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(88,192,239,0.4);
}

/* About Image */
.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
    height: auto;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(14,130,150,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-img:hover::after {
    opacity: 1;
}

.about-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* Team Description */
.team-description {
    margin-top: 60px;
    margin-bottom: 40px;
}

.team-description h2 {
    color: #1a1a2e;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-divider2 {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #58c0ef, #0e8296);
    margin: 0 0 30px 0;
    border-radius: 2px;
}

.team-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* VS Button */
.vs-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #58c0ef 0%, #0e8296 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(88,192,239,0.35);
    position: relative;
    overflow: hidden;
}

.vs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    transition: left 0.5s ease;
}

.vs-btn:hover::before {
    left: 100%;
}

.vs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(88,192,239,0.45);
    color: #fff;
    text-decoration: none;
}

.vs-btn i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.vs-btn:hover i {
    transform: translateX(5px);
}

.vs-btn:focus {
    outline: 2px solid #58c0ef;
    outline-offset: 3px;
}

/* Text Center & Margin */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 80px;
}

.mb-0 {
    margin-bottom: 0;
}

/* VS Button - SVG Icon Fix */
.vs-btn i,
.vs-btn svg {
    transition: transform 0.3s ease;
    font-size: 16px;
    flex-shrink: 0;
}

.vs-btn:hover i,
.vs-btn:hover svg {
    transform: translateX(5px);
}

.vs-btn:focus {
    outline: 2px solid #58c0ef;
    outline-offset: 3px;
}

/* ============================================
   8. DECORATIVE ELEMENTS
============================================ */

.exhibit-decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88,192,239,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.exhibit-decoration-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    animation: float 8s ease-in-out infinite;
}

.exhibit-decoration-2 {
    bottom: 15%;
    left: 10%;
    width: 250px;
    height: 250px;
    animation: float 10s ease-in-out infinite 2s;
}

/* ============================================
   9. WOW ANIMATIONS
============================================ */

.wow {
    visibility: hidden;
}

.wow.fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
    visibility: visible;
}

.wow.fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
    visibility: visible;
}

.wow.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
    visibility: visible;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   10. RESPONSIVE DESIGN
============================================ */

@media (min-width: 1400px) {
    .sf-exhibit-opportunity { padding: 120px 0; }
    .sf-title { font-size: 48px; }
    .sf-image-large { min-height: 320px; }
    .sf-image-small { min-height: 220px; }
}

@media (max-width: 1199px) {
    .sf-exhibit-opportunity { padding: 80px 0; }
    .sf-title { font-size: 38px; }
    .sec-title { font-size: 36px; }
    .sf-image-large { min-height: 260px; }
    .sf-image-small { min-height: 180px; }
    .breadcumb-menu li { font-size: 36px; }
}

@media (max-width: 991px) {
    .sf-exhibit-opportunity { padding: 60px 0; }
    .col-lg-6 { width: 100%; margin-bottom: 30px; }
    .mb-lg-0 { margin-bottom: 40px !important; }
    .sf-title { font-size: 34px; }
    .sec-title { font-size: 32px; }
    .sf-exhibit-content { padding: 0; }
    .sf-decoration { opacity: 0.05; }
    .space { padding: 60px 0; }
    .team-details { padding: 60px 0; }
    .breadcumb-menu li { font-size: 32px; }
}

@media (max-width: 767px) {
    .sf-exhibit-opportunity { padding: 50px 0; }
    
    .sf-images-grid {
        gap: 15px;
    }

       .vs-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 575px) {
    .vs-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .sf-image-large { min-height: 220px; }
    .sf-image-small { min-height: 150px; }
    
    .sf-image-frame { display: none; }
    .sf-exhibit-images-wrapper { padding: 10px; }
    
    .sf-exhibit-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .badge-icon {
        width: 45px;
        height: 45px;
    }
    
    .badge-icon i { font-size: 22px; }
    .badge-number { font-size: 24px; }
    .badge-label { font-size: 11px; }
    
    .sf-title { font-size: 28px; }
    .sec-title { font-size: 28px; }
    .team-description h2 { font-size: 28px; }
    .sf-description { font-size: 15px; text-align: left; }
    .benefit-item span { font-size: 15px; }
    .explore-text { font-size: 15px; text-align: left; }
    .explore-list ul li { font-size: 15px; }
    
    .sf-cta-button,
    .vs-btn {
        padding: 16px 35px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .breadcumb-wrapper { height: 250px; }
    .breadcumb-menu li { font-size: 24px; }
    .space { padding: 40px 0; }
    .team-details { padding: 40px 0; }
    .sec-line-left { margin: 20px auto 0; }
    .text-start { text-align: center; }
}

@media (max-width: 575px) {
    .sf-exhibit-opportunity { padding: 40px 0; }
    
    .sf-images-grid {
        grid-template-columns: 1fr;
    }
    
    .sf-image-large {
        grid-column: 1;
        min-height: 200px;
    }
    
    .sf-image-small { min-height: 180px; }
    
    .sf-title { font-size: 24px; }
    .sec-title { font-size: 24px; }
    .team-description h2 { font-size: 24px; }
    .sf-subtitle { font-size: 12px; }
    .sec-subtitle { font-size: 12px; }
    
    .sf-cta-button,
    .vs-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .benefit-icon {
        min-width: 28px;
        max-width: 28px;
        width: 28px;
        height: 28px;
    }
    
    .benefit-icon::after {
        left: 9px;
        top: 6px;
        width: 5px;
        height: 10px;
        border-width: 0 2.5px 2.5px 0;
    }
    
    .explore-list ul li::before {
        width: 24px;
        height: 24px;
    }
    
    .explore-list ul li::after {
        left: 7px;
        top: 8px;
        width: 5px;
        height: 10px;
        border-width: 0 2.5px 2.5px 0;
    }
}

@media (max-width: 480px) {
    .breadcumb-menu li { font-size: 20px; }
    .sf-title { font-size: 20px; }
    .sec-title { font-size: 20px; }
    .team-description h2 { font-size: 20px; }
    
    .sf-cta-button,
    .vs-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ============================================
   11. ACCESSIBILITY & PRINT
============================================ */

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .explore-list ul li::before,
    .benefit-icon {
        border: 2px solid #fff;
    }
    
    .sec-line,
    .sf-title-line {
        height: 5px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .breadcumb-wrapper,
    .vs-btn,
    .sf-cta-button {
        display: none;
    }
    
    .explore-text,
    .sf-description,
    .team-description p {
        color: #000;
    }
}