/* Trade Show Specific Styles */

/* Trade Show Hero Section */
.trade-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trade-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trade-hero .hero-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20) !important;
    z-index: 1;
}

.trade-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.year-label {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.trade-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.bfw-logo {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 20px;
    margin-bottom: 30px;
    color: #d4a574;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #d4a574 0%, #c39563 100%);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #c39563 0%, #b38552 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.early-bird {
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.info-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #333;
}

.info-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Categories Grid */
.categories-section {
    padding: 60px 0;
    background: #f9f9f9;
}

/* Categories Section with Video Background */
.categories-section-video {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 600px;
    margin-top: 60px;
    /* Fallback background image when video hasn't loaded yet or fails */
    background-image: url('https://static.wixstatic.com/media/d9e883_ae4290a5d492487384605bc413d993d1~mv2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-color: #666;
}

.categories-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    z-index: 1;
}

.categories-section-video .container {
    position: relative;
    z-index: 2;
}

.info-text-only {
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.info-text-only p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 400;
}



.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    transition: transform 0.3s;
}

.category-item:hover {
    transform: scale(1.1);
}

.category-item img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 4px solid #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.category-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.6);
}

.category-item p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Services List */
.services-list {
    padding: 80px 0;
    background: #fff;
}

/* Modern Services Grid Layout */
.services-list-modern {
    padding: 80px 0;
    position: relative;
    background-image: url('https://static.wixstatic.com/media/d9e883_5f76850566444ae3bd957afde67ce637~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/d9e883_5f76850566444ae3bd957afde67ce637~mv2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

/* Light overlay so white cards remain readable over the dark photo */
.services-list-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 240, 235, 0.25) !important;
    z-index: 0;
}

/* Lift all direct children above the overlay */
.services-list-modern > * {
    position: relative;
    z-index: 1;
}

.services-list-modern .container {
    position: relative;
    z-index: 1;
}

.section-title-services {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

.section-subtitle-services {
    font-size: 18px;
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    background-size: cover;
    background-position: center;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.10);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    z-index: 1;
}

.service-card-more::before {
    background: transparent;
}

.service-card i,
.service-card h3 {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
    border-color: #d4a574;
}

.service-card i {
    font-size: 36px;
    color: #d4a574;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.service-card:hover i {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.service-card-more {
    background: linear-gradient(135deg, #d4a574 0%, #c39563 100%);
    border-color: #d4a574;
}

.service-card-more i,
.service-card-more h3 {
    color: #fff;
}

.service-card-more:hover {
    transform: translateY(-10px) scale(1.05);
}

.services-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-column .and-more {
    color: #d4a574;
    font-size: 18px;
    margin-top: 20px;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #d4a574 0%, #c39563 100%);
    padding: 60px 0;
    text-align: center;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.banner-word {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
}

/* Impact Stats */
.impact-stats {
    padding: 80px 0;
    background: #f9f9f9;
}

.stats-grid-trade {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #d4a574;
}

/* Luxury Section */
.luxury-section {
    padding: 80px 0;
    background: #fff;
}

.luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.luxury-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.luxury-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.luxury-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.luxury-text .btn-primary {
    margin-top: 20px;
    background: linear-gradient(135deg, #d4a574 0%, #c39563 100%);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-text .btn-primary:hover {
    background: linear-gradient(135deg, #c39563 0%, #b38552 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Final CTA */
.final-cta {
    padding: 0;
    margin: 0;
}

.final-cta img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .trade-hero h1 {
        font-size: 42px;
    }
    
    .bfw-logo {
        font-size: 56px;
        letter-spacing: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .banner-word {
        font-size: 48px;
    }
    
    .stats-grid-trade {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .luxury-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-section-video {
        min-height: 500px;
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .trade-hero {
        height: 600px;
    }
    
    .trade-hero h1 {
        font-size: 32px;
    }
    
    .bfw-logo {
        font-size: 42px;
        letter-spacing: 10px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .category-item img {
        width: 140px;
        height: 140px;
    }
    
    .services-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .banner-word {
        font-size: 36px;
    }
    
    .stats-grid-trade {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-text h2,
    .luxury-text h2 {
        font-size: 28px;
    }
    
    .section-title-services {
        font-size: 32px;
    }
    
    .categories-section-video {
        min-height: 400px;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .trade-hero {
        height: 500px;
    }
    
    .trade-hero h1 {
        font-size: 24px;
    }
    
    .bfw-logo {
        font-size: 32px;
        letter-spacing: 8px;
    }
    
    .category-item img {
        width: 120px;
        height: 120px;
    }
    
    .service-column h3 {
        font-size: 14px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card i {
        font-size: 28px;
    }
    
    .banner-word {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title-services {
        font-size: 24px;
    }
}

/* Services grid heading forced white so it reads on background image */
.services-list-modern .section-title-services,
.services-list-modern h2,
.services-list-modern .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.services-list-modern .section-subtitle-services,
.services-list-modern .section-subtitle,
.services-list-modern p.subtitle {
    color: rgba(255,255,255,0.92) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
