/* Homepage New Design Styles */

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Our Features Section */
.features-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-card.featured {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 247, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-teal);
}

.feature-card.featured .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card.featured h3 {
    color: white;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.feature-card.featured p {
    color: white;
}

/* AIATF Overview Section */
.aiatf-overview-section {
    padding: 80px 20px;
    background: white;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-label {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.overview-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.overview-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.overview-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.overview-content strong {
    color: var(--primary-teal);
    font-weight: 600;
}

/* Connecting Section */
.connecting-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.connecting-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.connecting-label {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.connecting-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.connecting-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.connecting-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Scope of Impact - Red Section */
.scope-impact-red {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: white;
}

.scope-impact-red h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-stat-item {
    text-align: center;
}

.impact-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.impact-stat-item:hover .impact-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.impact-icon i {
    font-size: 40px;
    color: white;
}

.impact-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 16px;
    font-weight: 500;
}

/* Upcoming Shows Section */
.upcoming-shows-section {
    padding: 80px 20px;
    background: white;
}

.shows-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.shows-header h2 {
    font-size: 36px;
    color: var(--text-dark);
}

.view-shows-btn {
    background: #e63946;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-shows-btn:hover {
    background: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.show-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.show-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.show-location-badge {
    background: #e63946;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    align-self: flex-start;
}

.show-overlay h3 {
    font-size: 24px;
    margin: 0;
}

.show-subtitle {
    font-size: 14px;
    margin: 5px 0;
}

.show-date {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    align-self: flex-start;
}

.show-content {
    padding: 20px;
}

.show-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.show-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.show-description {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-btn {
    background: #e63946;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #d62828;
}

/* Opportunities Section */
.opportunities-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3949ab 0%, #283593 100%);
    color: white;
}

.opportunities-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.opportunities-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.8;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.opportunity-item {
    text-align: center;
}

.opportunity-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.opportunity-item:hover .opportunity-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.opportunity-icon i {
    font-size: 36px;
    color: white;
}

.opportunity-item p {
    font-size: 14px;
    font-weight: 500;
}

/* Exhibitors and Visitors Section */
.exhibitors-visitors-section {
    padding: 80px 20px;
    background: white;
}

.exhibitors-visitors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.exhibitors-column h3,
.visitors-column h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.logo-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.logo-item img {
    max-width: 100%;
    height: auto;
}

/* News and Updates Section */
.news-updates-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.news-label {
    text-align: center;
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-updates-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.news-read-btn {
    background: #e63946;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.news-read-btn:hover {
    background: #d62828;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 80px;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    overflow: visible;
    transition: transform 0.5s ease-in-out;
    width: 400%;
    /* 4 cards × 100% */
}

.testimonial-card {
    flex: 0 0 25%;
    /* 100% ÷ 4 cards */
    width: 25%;
    min-width: 25%;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-sizing: border-box;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image i {
    color: #ccc;
}

.testimonial-content h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e63946;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #d62828;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .overview-layout,
    .connecting-layout {
        grid-template-columns: 1fr;
    }

    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }

    .opportunities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .exhibitors-visitors-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 20px;
    }

    .section-title,
    .shows-header h2,
    .news-updates-section h2,
    .testimonials-section h2 {
        font-size: 28px;
    }

    .impact-stats-grid,
    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }
}