/* Conference Page Styles */
.conference-page {
    padding-top: 0;
}

/* Conference Hero */
.conference-hero {
    background-image: url('https://agrifutureconference.com/wp-content/uploads/2025/05/conference.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 42vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0 40px;
    color: #fff;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(200, 230, 201, 0.92) 0%, 
        rgba(165, 214, 167, 0.92) 50%, 
        rgba(129, 199, 132, 0.92) 100%
    );
    z-index: 1;
}

.conference-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

/* Conference Title */
.conference-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    animation: fadeInDown 1s ease-out;
    color: #1B5E20;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.conference-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2E7D32;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Conference Event Info */
.conference-event-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.conference-event-info .event-date,
.conference-event-info .event-location {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.conference-event-info .event-date i,
.conference-event-info .event-location i {
    font-size: 1.4rem;
    color: #1B5E20;
    background-color: rgba(255, 255, 255, 0.95);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(27, 94, 32, 0.3);
    transition: all 0.3s ease;
}

.conference-event-info .event-date span,
.conference-event-info .event-location span {
    color: #1B5E20;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.conference-event-info .event-date:hover,
.conference-event-info .event-location:hover {
    transform: translateY(-3px);
}

.conference-event-info .event-date:hover i,
.conference-event-info .event-location:hover i {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marketplace Content */
.marketplace-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    padding: 0 1rem;
    text-align: center;
}

.marketplace-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.marketplace-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2E7D32;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.3);
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Hero CTA Section */
.hero-cta-section {
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

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

/* Primary CTA Button */
.btn-cta-primary {
    position: relative;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 
        0 6px 20px rgba(27, 94, 32, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: none;
    text-decoration: none;
    font-size: 1rem;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(27, 94, 32, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-cta-primary .btn-text {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary .btn-icon {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Secondary CTA Button */
.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(27, 94, 32, 0.3);
    color: #1B5E20;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(27, 94, 32, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
    color: #0D4F12;
}

.btn-cta-secondary .btn-icon {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover .btn-icon {
    transform: scale(1.1);
}

/* Remove old styles that are no longer needed */
.hero-badge,
.hero-stats,
.marketplace-section,
.marketplace-header,
.marketplace-icon,
.marketplace-tagline,
.marketplace-features,
.feature-pill,
.hero-scroll-indicator,
.hero-background-pattern,
.cta-benefits,
.benefit-item {
    display: none !important;
}

/* Conference Experience */
.conference-experience {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.experience-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(76, 175, 80, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(76, 175, 80, 0.1);
}

.experience-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.05);
    border-color: transparent;
}

.card-title {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Remove old card-features styles */
.card-features {
    display: none;
}

/* Special Events */
.special-events {
    padding: 80px 0;
    background: var(--light-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.special-event-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.special-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.special-event-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-organizers {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.organizer-tag {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.event-sectors {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.sector-tag {
    background: #e8f5e8;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

.special-event-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.event-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.event-btn {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 50%, #1A202C 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(74, 85, 104, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.event-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.event-btn:hover::before {
    left: 100%;
}

.event-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 85, 104, 0.4);
    color: white;
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 50%, #171923 100%);
}

.event-btn .btn-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.event-btn .btn-icon {
    font-size: 0.8rem;
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-btn:hover .btn-icon {
    transform: translateX(4px) rotate(15deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Conference CTA */
.conference-cta {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: var(--light-text);
    padding: 100px 0;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-info {
    margin-top: 2rem;
}

.early-bird {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

/* Conference Thematic Focus */
.conference-thematic-focus {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e9);
    position: relative;
    overflow: hidden;
}

.conference-thematic-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--primary-color) 1px, transparent 1px),
        radial-gradient(circle, var(--primary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.05;
    pointer-events: none;
}

.thematic-focus-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.focus-item {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.focus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.5s ease;
}

.focus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.focus-item:hover::before {
    height: 100%;
}

/* Use homepage topics styles for icons */
.conference-thematic-focus .topic-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 16px;
    box-shadow: 
        0 6px 20px rgba(76, 175, 80, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(76, 175, 80, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.conference-thematic-focus .topic-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.conference-thematic-focus .topic-card:hover .topic-icon {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 12px 35px rgba(76, 175, 80, 0.25),
        inset 0 3px 6px rgba(255, 255, 255, 0.9);
    border-color: rgba(76, 175, 80, 0.4);
}

.conference-thematic-focus .topic-card:hover .topic-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.focus-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
}

.focus-description {
    color: #4CAF50;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.focus-paragraph {
    color: #5a6c7d;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    text-align: justify;
}

/* Relevant Delegates Section */
.relevant-delegates {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.relevant-delegates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.relevant-delegates .container {
    position: relative;
    z-index: 2;
}

.delegates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.delegate-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
}

.delegate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, 
        #4CAF50 0%, 
        #8BC34A 25%, 
        #CDDC39 50%, 
        #8BC34A 75%, 
        #4CAF50 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.delegate-card:hover::before {
    transform: scaleX(1);
}

.delegate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.delegate-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.delegate-card:hover .delegate-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #388E3C, #4CAF50);
}

.delegate-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E7D32;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

/* Enhanced Mobile Responsiveness - Comprehensive Improvements */

/* Base Mobile Styles (320px and up) - Enhanced */
@media screen and (max-width: 575px) {
    /* Global Mobile Container */
    .conference-page {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Enhanced Hero Section Mobile */
    .conference-hero {
        min-height: 35vh;
        padding: 40px 0 30px;
        background-attachment: scroll; /* Better performance on mobile */
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .conference-hero-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .conference-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
        line-height: 1.1;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .conference-subtitle {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .conference-event-info {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .conference-event-info .event-date i,
    .conference-event-info .event-location i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .conference-event-info .event-date span,
    .conference-event-info .event-location span {
        font-size: 1rem;
    }
    
    .marketplace-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .marketplace-description {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        padding: 0 5px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0 10px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 44px; /* Touch target */
    }

    /* Enhanced Section Headers Mobile */
    .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 5px;
        word-wrap: break-word;
    }
    
    .section-line {
        width: 60px;
        height: 3px;
        margin: 0 auto 20px;
    }

    /* Enhanced Thematic Focus Mobile - Major Improvements */
    .conference-thematic-focus {
        padding: 60px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .thematic-focus-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        width: 100%;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .focus-item {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        align-items: center;
        border: 2px solid rgba(76, 175, 80, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .focus-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        border-color: rgba(76, 175, 80, 0.2);
    }

    .focus-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4CAF50, #66BB6A, #81C784);
        border-radius: 20px 20px 0 0;
    }
    
    /* Mobile Focus Icon - Significantly Enhanced */
    .focus-icon {
        margin: 0 auto 25px;
        width: 90px;
        height: 90px;
        background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        flex-shrink: 0;
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.1),
            inset 0 1px 3px rgba(255, 255, 255, 0.8);
        border: 3px solid rgba(76, 175, 80, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .focus-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(76, 175, 80, 0.1), transparent);
        animation: rotate 8s linear infinite;
        pointer-events: none;
    }

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .focus-item:hover .focus-icon {
        transform: scale(1.05);
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.15),
            inset 0 2px 5px rgba(255, 255, 255, 0.9);
        border-color: rgba(76, 175, 80, 0.25);
    }
    
    .focus-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
        z-index: 2;
        position: relative;
        transition: all 0.3s ease;
    }

    .focus-item:hover .focus-icon img {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    }
    
    .focus-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.3;
        word-wrap: break-word;
        font-weight: 700;
        color: #2c3e50;
        text-align: center;
    }
    
    .focus-description {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #4CAF50;
        word-wrap: break-word;
        font-weight: 600;
        text-align: center;
        line-height: 1.4;
    }
    
    .focus-paragraph {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: justify;
        word-wrap: break-word;
        hyphens: auto;
        color: #555;
        padding: 0 10px;
    }

    /* Enhanced Delegates Section Mobile */
    .relevant-delegates {
        padding: 60px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .delegates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 380px;
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
    }
    
    .delegate-card {
        padding: 18px;
        text-align: left;
        width: 100%;
        min-height: 80px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .delegate-icon {
        width: 45px;
        height: 45px;
        margin: 0;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .delegate-title {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
        text-align: left;
        flex: 1;
    }

    /* Enhanced Experience Grid Mobile */
    .conference-experience {
        padding: 60px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 380px;
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
    }
    
    .experience-card {
        padding: 25px 20px;
        text-align: center;
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .card-description {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Enhanced Special Events Mobile */
    .special-events {
        padding: 60px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 380px;
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
    }
    
    .special-event-card {
        padding: 25px 20px;
        width: 100%;
        min-height: 300px;
    }
    
    .special-event-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .event-organizers,
    .event-sectors {
        flex-wrap: wrap;
        gap: 8px;
        margin: 15px 0;
        justify-content: center;
    }
    
    .organizer-tag,
    .sector-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
        word-wrap: break-word;
        text-align: center;
    }
}

/* Small Mobile Landscape Optimization */
@media screen and (max-width: 575px) and (orientation: landscape) {
    .conference-hero {
        min-height: 42vh;
        padding: 25px 0 20px;
    }
    
    .conference-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .conference-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .marketplace-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .marketplace-description {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        max-width: 200px;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .thematic-focus-list {
        gap: 15px;
    }
    
    .focus-item {
        padding: 20px 15px;
        max-width: 450px;
    }
    
    .focus-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .focus-icon img {
        width: 40px;
        height: 40px;
    }
    
    .delegates-grid,
    .experience-grid,
    .events-grid {
        max-width: 500px;
    }
    
    .delegate-card,
    .experience-card,
    .special-event-card {
        padding: 15px;
        min-height: auto;
    }
    
    .delegate-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        text-align: left;
        min-height: 60px;
    }
    
    .delegate-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .delegate-title {
        flex: 1;
        text-align: left;
        font-size: 0.9rem;
    }
}

/* Enhanced Tablet Portrait (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    /* Global Container */
    .conference-page {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Hero Section */
    .conference-hero {
        min-height: 40vh;
        padding: 50px 0 40px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .conference-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    
    .conference-subtitle {
        font-size: 1.1rem;
    }
    
    .marketplace-title {
        font-size: 1.9rem;
    }
    
    .marketplace-description {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: auto;
        min-width: 180px;
        max-width: 250px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Enhanced Thematic Focus for Tablet */
    .conference-thematic-focus {
        padding: 80px 0;
    }
    
    .thematic-focus-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 550px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .focus-item {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 25px;
        text-align: left;
        align-items: start;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 2px solid rgba(76, 175, 80, 0.1);
        transition: all 0.3s ease;
    }

    .focus-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        border-color: rgba(76, 175, 80, 0.2);
    }

    .focus-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4CAF50, #66BB6A, #81C784);
        border-radius: 20px 20px 0 0;
    }
    
    .focus-icon {
        margin: 0;
        align-self: start;
        width: 85px;
        height: 85px;
        background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px;
        flex-shrink: 0;
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.1),
            inset 0 1px 3px rgba(255, 255, 255, 0.8);
        border: 3px solid rgba(76, 175, 80, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .focus-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(76, 175, 80, 0.1), transparent);
        animation: rotate 8s linear infinite;
        pointer-events: none;
    }

    .focus-item:hover .focus-icon {
        transform: scale(1.05);
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.15),
            inset 0 2px 5px rgba(255, 255, 255, 0.9);
        border-color: rgba(76, 175, 80, 0.25);
    }
    
    .focus-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
        z-index: 2;
        position: relative;
        transition: all 0.3s ease;
    }

    .focus-item:hover .focus-icon img {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    }
    
    .focus-title {
        font-size: 1.6rem;
        text-align: left;
        margin-bottom: 12px;
        font-weight: 700;
        color: #2c3e50;
    }
    
    .focus-description {
        text-align: left;
        color: #4CAF50;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .focus-paragraph {
        font-size: 0.9rem;
        text-align: justify;
        line-height: 1.6;
        color: #555;
    }
    
    /* Delegates */
    .relevant-delegates {
        padding: 80px 0;
    }
    
    .delegates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .delegate-card {
        padding: 20px;
        min-height: 85px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .delegate-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .delegate-title {
        font-size: 1.05rem;
        flex: 1;
        text-align: left;
    }
    
    /* Experience */
    .conference-experience {
        padding: 80px 0;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .experience-card {
        padding: 30px 25px;
        min-height: 220px;
    }
    
    .card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    /* Special Events */
    .special-events {
        padding: 80px 0;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .special-event-card {
        padding: 30px 25px;
        min-height: 320px;
    }
    
    .special-event-card h3 {
        font-size: 1.3rem;
    }
    
    .special-event-card p {
        font-size: 0.95rem;
    }
    
    .event-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* CTA */
    .conference-cta {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: auto;
        min-width: 180px;
        max-width: 250px;
    }
}

/* Enhanced Tablet Landscape (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    /* Global Settings */
    .conference-page {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Hero */
    .conference-hero {
        min-height: 40vh;
        padding: 60px 0 50px;
    }
    
    .conference-title {
        font-size: 3rem;
    }
    
    .conference-subtitle {
        font-size: 1.15rem;
    }
    
    .marketplace-title {
        font-size: 2.1rem;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 2.3rem;
    }
    
    /* Thematic Focus */
    .conference-thematic-focus {
        padding: 80px 0;
    }
    
    .thematic-focus-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .focus-item {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 25px;
        text-align: left;
        padding: 30px;
        align-items: start;
    }
    
    .focus-icon {
        width: 90px;
        height: 90px;
    }
    
    .focus-icon img {
        width: 65px;
        height: 65px;
    }
    
    .focus-title {
        font-size: 1.7rem;
    }
    
    /* Delegates */
    .relevant-delegates {
        padding: 50px 0;
    }
    
    .delegates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
        padding: 0 30px;
    }
    
    .delegate-card {
        padding: 18px;
        min-height: 80px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
    }
    
    .delegate-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .delegate-title {
        font-size: 1rem;
        flex: 1;
        text-align: left;
    }
    
    /* Experience */
    .conference-experience {
        padding: 80px 0;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
        padding: 0 30px;
    }
    
    .experience-card {
        padding: 35px 30px;
        min-height: 240px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    /* Special Events */
    .special-events {
        padding: 80px 0;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
        padding: 0 30px;
    }
    
    .special-event-card {
        padding: 35px 30px;
        min-height: 350px;
    }
    
    .special-event-card h3 {
        font-size: 1.35rem;
    }
    
    .event-btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* CTA */
    .conference-cta {
        padding: 90px 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        max-width: 80%;
    }
}

/* Enhanced Small Desktop (992px to 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    /* Thematic Focus */
    .thematic-focus-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .focus-item {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 30px;
        text-align: left;
        padding: 35px;
    }
    
    .focus-icon {
        width: 110px;
        height: 110px;
    }
    
    .focus-icon img {
        width: 75px;
        height: 75px;
    }
    
    /* Delegates */
    .delegates-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Experience */
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    /* Special Events */
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-cta-primary,
    .btn-cta-secondary,
    .event-btn {
        min-height: 44px; /* iOS recommended touch target */
        padding: 12px 24px;
    }
    
    .focus-item,
    .delegate-card,
    .experience-card,
    .special-event-card {
        transition: none; /* Remove hover animations for touch devices */
    }
    
    .focus-item:active,
    .delegate-card:active,
    .experience-card:active,
    .special-event-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Enhanced touch targets */
    .organizer-tag,
    .sector-tag,
    .event-badge {
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .focus-icon img,
    .delegate-icon i,
    .card-icon i {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .conference-title,
    .section-title,
    .focus-title,
    .delegate-title,
    .card-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Performance optimizations for mobile */
@media screen and (max-width: 768px) {
    .conference-hero {
        background-attachment: scroll; /* Better performance */
        will-change: scroll-position;
    }
    
    .conference-hero::before,
    .conference-thematic-focus::before,
    .relevant-delegates::before {
        will-change: transform;
    }
    
    /* Reduce motion for accessibility and performance */
    @media (prefers-reduced-motion: reduce) {
        .conference-hero,
        .focus-item,
        .delegate-card,
        .experience-card,
        .special-event-card,
        .btn-cta-primary,
        .btn-cta-secondary,
        .event-btn {
            animation: none;
            transition: none;
        }
    }
}

/* Large Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
    .thematic-focus-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .focus-item {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 30px;
        text-align: left;
        padding: 35px;
    }
    
    .focus-icon {
        width: 120px;
        height: 120px;
    }
    
    .focus-icon img {
        width: 85px;
        height: 85px;
    }
    
    .delegates-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .experience-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Responsive Media Queries for Relevant Delegates - Additional Breakpoints */
@media (max-width: 991px) {
    .relevant-delegates {
        padding: 50px 0;
    }
    
    .delegates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .delegate-card {
        padding: 20px 15px;
    }
    
    .delegate-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .delegate-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .relevant-delegates {
        padding: 50px 0;
    }
    
    .delegates-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 30px auto 0;
    }
    
    .delegate-card {
        padding: 16px;
        margin: 0 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        min-height: 70px;
        text-align: left;
    }
    
    .delegate-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .delegate-title {
        font-size: 1rem;
        line-height: 1.3;
        flex: 1;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .relevant-delegates {
        padding: 40px 0;
    }
    
    .delegates-grid {
        max-width: 320px;
        gap: 12px;
    }
    
    .delegate-card {
        padding: 14px;
        margin: 0 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        min-height: 65px;
        text-align: left;
    }
    
    .delegate-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .delegate-title {
        font-size: 0.95rem;
        line-height: 1.3;
        flex: 1;
        text-align: left;
    }
}

/* ================================
   VISA SECTION STYLES
   ================================ */

/* Visa Section Styling */
.visa-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(232, 245, 233, 0.6) 0%, 
        rgba(200, 230, 201, 0.4) 50%, 
        rgba(165, 214, 167, 0.6) 100%
    );
    position: relative;
}

.visa-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23388E3C" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    pointer-events: none;
}

.visa-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.visa-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #2E7D32;
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.visa-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.visa-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 52px;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.visa-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.visa-actions .btn:hover::before {
    left: 100%;
}

/* Check Visa Requirements Button */
.visa-link-btn {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
    color: white;
    border-color: #1B5E20;
}

.visa-link-btn:hover {
    background: linear-gradient(135deg, #0D2818 0%, #1B5E20 50%, #2E7D32 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(27, 94, 32, 0.3);
    color: white;
}

/* Watch Immigration Guide Button (YouTube) */
.visa-youtube-btn {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 50%, #1A202C 100%);
    color: white;
    border-color: #6B7280;
}

.visa-youtube-btn:hover {
    background: linear-gradient(135deg, #4B5563 0%, #6B7280 50%, #9CA3AF 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(107, 114, 128, 0.3);
    color: white;
}

/* View TDAC Guidelines Button (Outlined) */
.visa-guidelines-btn {
    background: transparent;
    color: #1B5E20;
    border-color: #1B5E20;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
}

.visa-guidelines-btn:hover {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(27, 94, 32, 0.3);
}

.btn-text {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.visa-actions .btn:hover .btn-icon {
    transform: scale(1.1);
}

/* TDAC Modal Styling */
.tdac-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(27, 94, 32, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tdac-modal.show {
    opacity: 1;
}

.tdac-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tdac-modal-container {
    position: relative;
    background: white;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px -12px rgba(27, 94, 32, 0.4),
        0 20px 40px -8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(30px);
    transition: all 0.3s ease;
}

.tdac-modal.show .tdac-modal-container {
    transform: scale(1) translateY(0);
}

.tdac-modal-header {
    padding: 10px;
    border-bottom: 1px solid #e8f5e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-radius: 20px 20px 0 0;
}

.tdac-modal-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1B5E20;
    letter-spacing: 0.5px;
}

.tdac-modal-close {
    background: rgba(27, 94, 32, 0.1);
    border: 2px solid #1B5E20;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1B5E20;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.tdac-modal-close:hover {
    background: #1B5E20;
    color: white;
    transform: scale(1.1);
}

.tdac-modal-body {
    padding: 15rem 4rem 4rem 4rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
}

.tdac-guidelines-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.tdac-guidelines-image:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 991px) {
    .visa-section {
        padding: 60px 0;
    }
    
    .visa-actions {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .visa-section {
        padding: 50px 0;
    }
    
    .visa-actions .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        min-height: 52px;
    }
    
    .visa-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .tdac-modal-container {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
        border-radius: 16px;
    }
    
    .tdac-modal-header {
        padding: 1.5rem;
        border-radius: 16px 16px 0 0;
    }
    
    .tdac-modal-body {
        padding: 1.5rem;
    }
    
    .tdac-modal-title {
        font-size: 1.5rem;
    }
    
    .tdac-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Responsive styles - ALWAYS keep 3 columns in one row */
@media (max-width: 992px) {
    .conference-thematic-focus {
        padding: 50px 0;
    }
    
    .thematic-focus-list {
        gap: 15px;
        margin-top: 20px;
    }
    
    .focus-item {
        padding: 25px 15px;
    }
    
    .conference-thematic-focus .topic-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
        padding: 14px;
    }
    
    .conference-thematic-focus .topic-icon img {
        width: 40px;
        height: 40px;
    }
    
    .focus-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .conference-thematic-focus {
        padding: 40px 0;
    }
    
    .thematic-focus-list {
        gap: 12px;
        margin-top: 15px;
    }
    
    .focus-item {
        padding: 20px 12px;
    }
    
    .conference-thematic-focus .topic-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
        padding: 12px;
    }
    
    .conference-thematic-focus .topic-icon img {
        width: 35px;
        height: 35px;
    }
    
    .focus-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .conference-thematic-focus {
        padding: 35px 0;
    }
    
    .thematic-focus-list {
        gap: 10px;
    }
    
    .focus-item {
        padding: 18px 10px;
    }
    
    .conference-thematic-focus .topic-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.6rem;
        padding: 10px;
    }
    
    .conference-thematic-focus .topic-icon img {
        width: 32px;
        height: 32px;
    }
    
    .focus-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .visa-section {
        padding: 40px 0;
    }
    
    .visa-actions .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        min-height: 52px;
    }
    
    .visa-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .tdac-modal-header {
        padding: 1.25rem;
    }
    
    .tdac-modal-body {
        padding: 1.25rem;
    }
    
    .tdac-modal-title {
        font-size: 1.25rem;
    }
}

/* VISA Section Button Styling */
.visa-guidelines-btn .btn-text {
    font-size: 0.75rem;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    display: inline;
}

.visa-guidelines-btn {
    padding: 0.875rem 1rem;
    min-height: 52px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 240px;
}

.visa-guidelines-btn .btn-icon {
    font-size: 1rem;
} 