/* ============================================
   EU CHAMBERS - EVENTS & EVENT DETAILS STYLES
   ============================================ */

/* --------------------------------------------
   CSS VARIABLES - EU Chambers Brand Palette
   -------------------------------------------- */
:root {
    --eu-primary: #004494;
    --eu-primary-dark: #003776;
    --eu-primary-light: #4073af;
    --eu-primary-lighter: #7fa1c9;
    --eu-primary-bg: #f2f5f9;
    --eu-secondary: #ffd617;
    --eu-secondary-light: #ffe879;
    --eu-secondary-bg: #fff4bb;
    --eu-dark: #1a1a2e;
    --eu-grey-100: #404040;
    --eu-grey-75: #707070;
    --eu-grey-50: #9f9f9f;
    --eu-grey-25: #cfcfcf;
    --eu-grey-10: #ebebeb;
    --eu-grey-5: #f5f5f5;
    --eu-white: #ffffff;
    --eu-success: #467a39;
    --eu-info: #006fb4;
    --eu-warning: #f29527;
    --eu-error: #da2130;
    --shadow-sm: 0 2px 8px rgba(0, 68, 148, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 68, 148, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 68, 148, 0.16);
    --shadow-glow: 0 0 30px rgba(0, 68, 148, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------
   ANIMATIONS
   -------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --------------------------------------------
   COMMON SECTION STYLES
   -------------------------------------------- */
.about-text {
    font-size: 1rem;
    /*color: var(--eu-grey-75);*/
    color: var(--text-dark) max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --------------------------------------------
   VERTICAL TABS
   -------------------------------------------- */
.vertical-tabs-wrapper {
    position: sticky;
    top: 100px;
}

.vertical-tab-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--eu-white);
    padding: 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--eu-grey-10);
}

.v-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: none;
    background: transparent;
    color: var(--eu-grey-75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.v-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--eu-primary), var(--eu-secondary));
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.v-tab-btn:hover {
    color: var(--eu-primary);
    background: var(--eu-primary-bg);
}

.v-tab-btn:hover::before {
    opacity: 0.3;
}

.v-tab-btn.active {
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-white);
    box-shadow: var(--shadow-sm);
}

.v-tab-btn.active::before {
    opacity: 1;
    background: var(--eu-secondary);
}

.v-tab-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 68, 148, 0.08);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.v-tab-btn.active .v-tab-icon {
    background: rgba(255, 214, 23, 0.2);
    color: var(--eu-secondary);
}

.v-tab-text {
    flex: 1;
    font-weight: 500;
}

.v-tab-count {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    background: var(--eu-grey-10);
    color: var(--eu-grey-75);
    transition: all var(--transition-fast);
}

.v-tab-btn.active .v-tab-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--eu-white);
}

/* --------------------------------------------
   EVENTS LISTING PAGE
   -------------------------------------------- */
.events-listing-section {
    position: relative;
    overflow: hidden;
}

/* Event Cards */
.event-card {
    background: var(--eu-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--eu-grey-10);
    position: relative;
    /*animation: fadeInUp 0.6s ease forwards;*/
    opacity: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:nth-child(1) {
    /*animation-delay: 0.1s;*/
}

.event-card:nth-child(2) {
    animation-delay: 0.2s;
}

.event-card:nth-child(3) {
    animation-delay: 0.3s;
}

.event-card:nth-child(4) {
    animation-delay: 0.4s;
}

.event-card:nth-child(5) {
    animation-delay: 0.5s;
}

.event-card:nth-child(6) {
    animation-delay: 0.6s;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 68, 148, 0.15);
}

.event-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-fast);
}

.event-card:hover .event-card-image img {
    transform: scale(1.08);
}

.event-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eu-white);
    z-index: 2;
}

.event-badge.summit {
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
}

.event-badge.conference {
    background: linear-gradient(135deg, var(--eu-info), #005a94);
}

.event-badge.awards {
    background: linear-gradient(135deg, var(--eu-secondary), #e6c014);
    color: var(--eu-dark);
}

.event-badge.webinar {
    background: linear-gradient(135deg, var(--eu-success), #3a6630);
}

/* Time Badge - Fixed positioning */
.event-time-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.event-time-badge i {
    color: var(--eu-primary);
    font-size: 0.9rem;
}

.event-time-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--eu-dark);
    white-space: nowrap;
}

.event-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    min-height: calc(2 * 1.4em);
    align-items: flex-start;
}

.event-meta-item {
    font-size: 0.8rem;
    color: var(--eu-grey-75);
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.4;
}

.event-meta-item i {
    color: var(--eu-primary-light);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.event-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.4em);
}

.event-title a {
    color: var(--eu-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.event-title a:hover {
    color: var(--eu-primary);
}

.event-excerpt {
    font-size: 0.9rem;
    color: var(--eu-grey-75);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(3 * 1.6em);
}

/* Event Footer - Always at bottom */
.event-footer {
    border-top: 1px solid var(--eu-grey-10);
    padding-top: 16px;
    margin-top: auto;
    flex-shrink: 0;
}

.event-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--eu-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.event-read-more i {
    transition: transform var(--transition-fast);
}

.event-read-more:hover {
    color: var(--eu-primary-dark);
    gap: 10px;
}

.event-read-more:hover i {
    transform: translateX(4px);
}

/* Pagination */
.event-pagination .page-link {
    border: 1px solid var(--eu-grey-10);
    color: var(--eu-grey-75);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--radius-sm) !important;
    margin: 0 4px;
    transition: all var(--transition-fast);
}

.event-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    border-color: var(--eu-primary);
    color: var(--eu-white);
    box-shadow: var(--shadow-sm);
}

.event-pagination .page-link:hover:not(.disabled) {
    background: var(--eu-primary-bg);
    color: var(--eu-primary);
    border-color: var(--eu-primary-light);
}

/* Decorative Elements */
.events-decorative {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    background: var(--eu-primary);
}

.deco-circle.deco-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
}

.deco-circle.deco-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -80px;
}

.deco-circle.deco-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 5%;
}

/* --------------------------------------------
   EVENT DETAILS PAGE
   -------------------------------------------- */
.event-details-section {
    position: relative;
    overflow: hidden;
}

.event-details-section h4 {
    color: var(--primary-dark);
    font-weight: 500;
}

.event-details-section p {
    text-align: justify;
}



/* Sticky Sidebar */
.sticky-action-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.sticky-action-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 68, 148, 0.1);
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    color: var(--eu-grey-75);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.sticky-btn span {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-btn:hover {
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-sm);
}

/* Event Header */
.event-header {
    animation: fadeInUp 0.6s ease forwards;
}

.event-category-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--eu-primary-bg), var(--eu-secondary-bg));
    color: var(--eu-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 68, 148, 0.1);
}

.event-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--eu-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

/* Event Info Bar */
.event-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--eu-primary-bg), rgba(255, 214, 23, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 68, 148, 0.08);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 180px;
}

.info-item>i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-yellow);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item>i .bi::before,
.info-item>i [class^="bi-"]::before,
.info-item>i [class*=" bi-"]::before {
    font-weight: 600 !important;
}

.bi-clock::before,
.bi-calendar::before,
.bi-geo-alt::before {
    font-weight: 600 !important;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: var(--eu-grey-50);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eu-dark);
}

/* Event Description */
.event-description {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--eu-grey-100);
    margin-bottom: 20px;
}

.content-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--eu-dark);
    margin-top: 32px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px;
}

.content-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, var(--eu-primary), var(--eu-secondary));
    border-radius: 2px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--eu-grey-100);
    border-bottom: 1px solid var(--eu-grey-10);
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list li i {
    color: var(--eu-success);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Fee Table */
.fee-table-wrapper {
    background: linear-gradient(135deg, var(--eu-white), var(--eu-grey-5));
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--eu-grey-10);
}

.fee-table {
    width: 100%;
    margin-bottom: 16px;
}

.fee-table th,
.fee-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--eu-grey-10);
}

.fee-table th {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eu-grey-50);
    background: transparent;
}

.fee-table td {
    font-size: 0.95rem;
    color: var(--eu-grey-100);
}

.fee-table td strong {
    color: var(--eu-primary);
    font-weight: 700;
}

.fee-note {
    font-size: 0.85rem;
    color: var(--eu-grey-75);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-note i {
    color: var(--eu-info);
}

/* Right Side - Featured Image */
.event-media-wrapper {
    animation: slideInRight 0.8s ease forwards;
}

.event-featured-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
}

.event-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.event-featured-image:hover img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 51, 118, 0.7) 100%);
    pointer-events: none;
}

/* Floating Info Card */
.floating-info-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.f-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--eu-primary);
    line-height: 1;
}

.f-month {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--eu-grey-75);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.f-year {
    font-size: 0.75rem;
    color: var(--eu-grey-50);
}

.floating-venue {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--eu-grey-75);
    font-size: 0.9rem;
    font-weight: 500;
}

.floating-venue i {
    color: var(--eu-primary);
    font-size: 1.1rem;
}

/* Event Stats */
.event-stats-row {
    display: flex;
    gap: 16px;
}

.stat-item {
    flex: 1;
    background: linear-gradient(135deg, var(--eu-white), var(--eu-grey-5));
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--eu-grey-10);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 68, 148, 0.15);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--eu-primary);
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--eu-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--eu-grey-50);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* --------------------------------------------
   ACTION BUTTONS SECTION
   -------------------------------------------- */
.action-buttons-section {
    background: linear-gradient(135deg, var(--eu-primary-bg), rgba(255, 214, 23, 0.05));
    border-top: 1px solid var(--eu-grey-10);
    border-bottom: 1px solid var(--eu-grey-10);
    position: relative;
}

/* Yellow icons for action buttons */
.action-btn .action-btn-icon,
.action-btn .btn-icon .action-btn-icon,
.btn-eu-blue .action-btn-icon,
.btn-eu-blue i.action-btn-icon {
    color: var(--eu-secondary) !important;
}

.action-btn:hover .action-btn-icon,
.action-btn:hover .btn-icon .action-btn-icon,
.btn-eu-blue:hover .action-btn-icon,
.btn-eu-blue:hover i.action-btn-icon {
    color: var(--eu-secondary) !important;
}

.action-buttons-wrapper {
    animation: fadeInUp 0.6s ease forwards;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background: var(--eu-white);
    color: var(--eu-dark);
    box-shadow: var(--shadow-sm);
}

.action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.action-btn:hover::before {
    transform: translateX(100%);
}

.btn-brochure {
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-white);
    border-color: var(--eu-primary);
}

.btn-brochure:hover {
    box-shadow: 0 8px 24px rgba(0, 68, 148, 0.3);
    transform: translateY(-2px);
    color: var(--eu-white);
}

.btn-flyer {
    background: linear-gradient(135deg, var(--eu-info), #005a94);
    color: var(--eu-white);
    border-color: var(--eu-info);
}

.btn-flyer:hover {
    box-shadow: 0 8px 24px rgba(0, 111, 180, 0.3);
    transform: translateY(-2px);
    color: var(--eu-white);
}

.btn-share {
    background: var(--eu-blue);
    color: var(--eu-white);
}

.btn-share:hover {
    background: #002266;
    color: var(--eu-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-print {
    background: var(--eu-blue);
    color: var(--eu-white);
}

.btn-print:hover {
    background: #002266;
    color: var(--eu-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* --------------------------------------------
   CONTACT SECTION
   -------------------------------------------- */
.contact-section {
    position: relative;
}

.contact-card {
    background: linear-gradient(135deg, var(--eu-white), var(--eu-primary-bg));
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 68, 148, 0.08);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s ease forwards;
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.contact-card-header {
    background: linear-gradient(135deg, #003399, #003399);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-card-header i {
    font-size: 1.5rem;
    color: var(--eu-secondary);
}

.contact-card-header h3 {
    color: var(--eu-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.contact-card-body {
    padding: 32px;
}

.contact-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--eu-white);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-main {
    text-align: left;
}

.contact-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--eu-dark);
    margin-bottom: 4px;
}

.contact-designation {
    font-size: 0.9rem;
    color: var(--eu-grey-75);
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--eu-grey-100);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 16px;
    background: var(--eu-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--eu-grey-10);
    transition: all var(--transition-fast);
}

.contact-link i {
    color: var(--eu-primary);
    font-size: 1.1rem;
}

.contact-link:hover {
    background: var(--eu-primary);
    color: var(--eu-white);
    border-color: var(--eu-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-link:hover i {
    color: var(--eu-secondary);
}

/* --------------------------------------------
   PARTNERS SECTION
   -------------------------------------------- */
.partners-section {
    background: linear-gradient(180deg, var(--eu-grey-5), var(--eu-white));
    position: relative;
}

.partner-group-card {
    background: #003399;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--eu-grey-10);
    transition: all var(--transition-normal);
    height: 100%;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.partner-group-card:nth-child(1) {
    animation-delay: 0.1s;
}

.partner-group-card:nth-child(2) {
    animation-delay: 0.15s;
}

.partner-group-card:nth-child(3) {
    animation-delay: 0.2s;
}

.partner-group-card:nth-child(4) {
    animation-delay: 0.25s;
}

.partner-group-card:nth-child(5) {
    animation-delay: 0.3s;
}

.partner-group-card:nth-child(6) {
    animation-delay: 0.35s;
}

.partner-group-card:nth-child(7) {
    animation-delay: 0.4s;
}

.partner-group-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(0, 68, 148, 0.12);
}

.partner-group-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--eu-yellow);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--eu-grey-10);
    position: relative;
}

.partner-group-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--eu-primary), var(--eu-secondary));
    border-radius: 1px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.partner-logo-item {
    flex: 1;
    min-width: 170px;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--eu-grey-5);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.partner-logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.partner-logo-item:hover {
    background: var(--eu-white);
    border-color: rgba(0, 68, 148, 0.1);
    box-shadow: var(--shadow-sm);
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --------------------------------------------
   RELATED EVENTS SECTION
   -------------------------------------------- */
.related-events-section {
    background: var(--eu-white);
    position: relative;
}

.related-events-swiper {
    padding-bottom: 50px;
}

.related-event-card {
    background: var(--eu-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--eu-grey-10);
    transition: all var(--transition-normal);
}

.related-event-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.re-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.re-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.related-event-card:hover .re-image img {
    transform: scale(1.08);
}

.re-date {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.re-body {
    padding: 20px;
}

.re-body h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.re-body h4 a {
    color: var(--eu-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.re-body h4 a:hover {
    color: var(--eu-primary);
}

.re-location {
    font-size: 0.8rem;
    color: var(--eu-grey-75);
    display: flex;
    align-items: center;
    gap: 5px;
}

.re-location i {
    color: var(--eu-primary-light);
}

.related-events-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--eu-grey-25);
    opacity: 1;
    transition: all var(--transition-fast);
}

.related-events-pagination .swiper-pagination-bullet-active {
    background: var(--eu-primary);
    width: 24px;
    border-radius: 5px;
}

/* --------------------------------------------
   SHARE MODAL
   -------------------------------------------- */
.share-modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.share-modal-content .modal-header {
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    border: none;
    padding: 20px 24px;
}

.share-modal-content .modal-title {
    color: var(--eu-white);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-modal-content .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.share-modal-content .modal-body {
    padding: 28px;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--eu-grey-100);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--eu-grey-10);
    background: var(--eu-white);
    cursor: pointer;
}

.share-option i {
    font-size: 1.6rem;
}

.share-option.facebook:hover {
    background: #1877F2;
    color: var(--eu-white);
    border-color: #1877F2;
}

.share-option.twitter:hover {
    background: #000000;
    color: var(--eu-white);
    border-color: #000000;
}

.share-option.linkedin:hover {
    background: #0A66C2;
    color: var(--eu-white);
    border-color: #0A66C2;
}

.share-option.whatsapp:hover {
    background: #25D366;
    color: var(--eu-white);
    border-color: #25D366;
}

.share-option.email:hover {
    background: var(--eu-primary);
    color: var(--eu-white);
    border-color: var(--eu-primary);
}

.share-option.copy:hover {
    background: var(--eu-grey-100);
    color: var(--eu-white);
    border-color: var(--eu-grey-100);
}

/* --------------------------------------------
   DECORATIVE ELEMENTS
   -------------------------------------------- */
.event-details-deco {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.deco-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-secondary));
}

.deco-shape.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

.deco-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    left: -100px;
    background: linear-gradient(135deg, var(--eu-secondary), var(--eu-primary));
}

.deco-shape.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 3%;
}

/* --------------------------------------------
   RESPONSIVE DESIGN
   -------------------------------------------- */
@media (max-width: 1399.98px) {
    .sticky-action-sidebar {
        display: none !important;
    }
}

@media (max-width: 1199.98px) {
    .event-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .event-main-title {
        font-size: 1.9rem;
    }

    .event-info-bar {
        flex-direction: column;
        gap: 16px;
    }

    .info-item {
        min-width: 100%;
    }

    .event-stats-row {
        margin-top: 20px;
    }

    .contact-info-main {
        text-align: center;
    }

    .contact-details {
        margin-top: 16px;
    }

    /* Vertical tabs responsive */
    .vertical-tabs-wrapper {
        position: static;
        margin-bottom: 24px;
    }

    .vertical-tab-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .v-tab-btn {
        flex: 1;
        min-width: 160px;
        justify-content: center;
    }

    .v-tab-btn::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        border-radius: 2px 2px 0 0;
    }
}

@media (max-width: 767.98px) {
    .event-main-title {
        font-size: 1.6rem;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .share-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-info-card {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .floating-date {
        align-items: center;
    }

    .partner-logos {
        justify-content: center;
    }

    .vertical-tab-nav {
        flex-direction: column;
    }

    .v-tab-btn {
        min-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .event-card-image {
        height: 180px;
    }

    .event-card-body {
        padding: 20px;
    }

    .event-title {
        font-size: 1rem;
        min-height: calc(2 * 1.4em);
    }

    .event-excerpt {
        font-size: 0.85rem;
        min-height: calc(3 * 1.55em);
    }

    .event-meta {
        min-height: calc(2 * 1.4em);
    }

    .contact-card-body {
        padding: 24px 20px;
    }

    .partner-group-card {
        padding: 20px;
    }

    .fee-table-wrapper {
        padding: 16px;
    }

    .fee-table th,
    .fee-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }

    .event-time-badge {
        padding: 6px 12px;
    }

    .event-time-badge span {
        font-size: 0.75rem;
    }
}

/* Print Styles */
@media print {

    .sticky-action-sidebar,
    .event-details-deco,
    .events-decorative,
    .action-buttons-section,
    .related-events-section,
    .share-modal-content,
    .event-pagination,
    .vertical-tabs-wrapper {
        display: none !important;
    }

    .event-featured-image {
        box-shadow: none;
        border: 1px solid var(--eu-grey-25);
    }

    .contact-card {
        box-shadow: none;
        border: 1px solid var(--eu-grey-25);
    }

    .partner-group-card {
        box-shadow: none;
        border: 1px solid var(--eu-grey-25);
        break-inside: avoid;
    }

    body {
        background: white !important;
        color: black !important;
    }

    a {
        text-decoration: none !important;
        color: black !important;
    }
}


/* ============================================
   EU CHAMBERS - EVENTS LISTING PAGE STYLES
   (New styles for redesigned events page)
   ============================================ */

/* --------------------------------------------
   SECTION ICON WRAPS
   -------------------------------------------- */
.section-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0, 68, 148, 0.08), rgba(0, 68, 148, 0.04));
    border: 1px solid rgba(0, 68, 148, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eu-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.section-icon-wrap.upcoming {
    background: linear-gradient(135deg, rgba(255, 214, 23, 0.15), rgba(255, 214, 23, 0.05));
    border-color: rgba(255, 214, 23, 0.3);
    color: #b8860b;
}

.section-icon-wrap:hover {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: var(--shadow-sm);
}

/* --------------------------------------------
   VIEW ALL BUTTON
   -------------------------------------------- */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid var(--eu-primary);
    color: var(--eu-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    background: transparent;
}

.btn-view-all:hover {
    background: var(--eu-primary);
    color: var(--eu-white);
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 68, 148, 0.2);
    transform: translateY(-2px);
}

.btn-view-all i {
    transition: transform var(--transition-fast);
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------
   EVENTS FILTER BAR
   -------------------------------------------- */
.events-filter-bar {
    background: var(--eu-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--eu-grey-10);
    box-shadow: var(--shadow-sm);
}

.filter-input-wrap,
.filter-select-wrap {
    position: relative;
}

.filter-input-wrap i,
.filter-select-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eu-grey-50);
    font-size: 0.9rem;
    z-index: 2;
    pointer-events: none;
}

.filter-input-wrap input,
.filter-select-wrap select {
    padding-left: 40px;
    border: 1.5px solid var(--eu-grey-10);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--eu-grey-100);
    transition: all var(--transition-fast);
    height: 44px;
    background: var(--eu-grey-5);
}

.filter-input-wrap input:focus,
.filter-select-wrap select:focus {
    border-color: var(--eu-primary);
    background: var(--eu-white);
    box-shadow: 0 0 0 3px rgba(0, 68, 148, 0.08);
}

.filter-select-wrap select {
    appearance: auto;
    cursor: pointer;
}

/* --------------------------------------------
   EVENT DATE OVERLAY (Bottom Left on Card)
   -------------------------------------------- */
.event-date-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    min-width: 56px;
}

.ed-day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--eu-primary);
    line-height: 1;
}

.ed-month {
    font-size: 0.7rem;
    color: var(--eu-grey-75);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.ed-year {
    font-size: 0.65rem;
    color: var(--eu-grey-50);
    margin-top: 1px;
}

/* --------------------------------------------
   UPCOMING EVENTS SECTION
   -------------------------------------------- */
.upcoming-events-section {
    background: var(--eu-white);
    position: relative;
}

.upcoming-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--eu-grey-25), transparent);
}

.upcoming-events-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.upcoming-event-row {
    background: var(--eu-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--eu-grey-10);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.upcoming-event-row:nth-child(1) {
    animation-delay: 0.1s;
}

.upcoming-event-row:nth-child(2) {
    animation-delay: 0.2s;
}

.upcoming-event-row:nth-child(3) {
    animation-delay: 0.3s;
}

.upcoming-event-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 68, 148, 0.12);
}

.upcoming-event-media {
    position: relative;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.upcoming-event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.upcoming-event-row:hover .upcoming-event-media img {
    transform: scale(1.05);
}

/* Date Block on Image */
.upcoming-date-block {
    position: absolute;
    bottom: 0px;
    left: 20px;
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    min-width: 70px;
}

.ud-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.ud-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 4px;
    opacity: 0.9;
}

.ud-year {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 2px;
}

.ud-time {
    font-size: 0.7rem;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

.upcoming-event-content {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.upcoming-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 68, 148, 0.08), rgba(0, 68, 148, 0.04));
    color: var(--eu-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 68, 148, 0.1);
    align-self: flex-start;
}

.upcoming-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eu-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.upcoming-desc {
    font-size: 0.95rem;
    color: var(--eu-grey-75);
    line-height: 1.7;
    margin-bottom: 16px;
}

.upcoming-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--eu-grey-75);
    margin-bottom: 24px;
}

.upcoming-meta i {
    color: var(--eu-primary);
}

.upcoming-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-white);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 68, 148, 0.2);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 68, 148, 0.3);
    color: var(--eu-white);
    background: linear-gradient(135deg, var(--eu-primary-dark), #002a5c);
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--eu-primary);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1.5px solid var(--eu-primary);
    transition: all var(--transition-normal);
}

.btn-view-details:hover {
    background: var(--eu-primary);
    color: var(--eu-white);
    gap: 12px;
    transform: translateY(-2px);
}

.btn-view-details i {
    transition: transform var(--transition-fast);
}

.btn-view-details:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------
   SUBMIT EVENT CTA SECTION
   -------------------------------------------- */
.submit-event-section {
    background: linear-gradient(135deg, var(--eu-primary) 0%, var(--eu-primary-dark) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.submit-event-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 214, 23, 0.05) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
}

.submit-event-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    backdrop-filter: blur(10px);
}

.submit-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 214, 23, 0.2), rgba(255, 214, 23, 0.1));
    border: 1px solid rgba(255, 214, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eu-secondary);
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.submit-icon-wrap:hover {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(255, 214, 23, 0.3), rgba(255, 214, 23, 0.15));
}

.submit-title {
    color: var(--eu-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.submit-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.btn-submit-event {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--eu-white);
    color: var(--eu-primary);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit-event:hover {
    background: var(--eu-secondary);
    color: var(--eu-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    gap: 14px;
}

.btn-submit-event i {
    transition: transform var(--transition-fast);
}

.btn-submit-event:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------
   SCROLL REVEAL UTILITIES
   -------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------
   RESPONSIVE - NEW SECTIONS
   -------------------------------------------- */
@media (max-width: 1199.98px) {
    .upcoming-event-content {
        padding: 24px 28px;
    }

    .upcoming-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 991.98px) {
    .upcoming-event-media {
        min-height: 220px;
    }

    .upcoming-event-content {
        padding: 24px;
    }

    .upcoming-title {
        font-size: 1.2rem;
    }

    .submit-event-card {
        padding: 24px;
    }

    .events-filter-bar .row>div {
        margin-bottom: 8px;
    }

    .events-filter-bar .row>div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .upcoming-date-block {
        padding: 12px 16px;
        min-width: 60px;
    }

    .ud-day {
        font-size: 1.6rem;
    }

    .upcoming-actions {
        flex-direction: column;
    }

    .btn-register,
    .btn-view-details {
        width: 100%;
        justify-content: center;
    }

    .submit-event-card .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .submit-icon-wrap {
        margin: 0 auto;
    }

    .text-lg-end {
        text-align: center !important;
    }
}

@media (max-width: 575.98px) {
    .event-card-image {
        height: 180px;
    }

    .event-card-body {
        padding: 20px;
    }

    .event-title {
        font-size: 1rem;
        min-height: calc(2 * 1.4em);
    }

    .event-excerpt {
        font-size: 0.85rem;
        min-height: calc(3 * 1.55em);
    }

    .event-meta {
        min-height: calc(2 * 1.4em);
    }

    .upcoming-event-content {
        padding: 20px;
    }

    .upcoming-title {
        font-size: 1.1rem;
    }

    .event-date-overlay {
        padding: 8px 12px;
        min-width: 48px;
    }

    .ed-day {
        font-size: 1.2rem;
    }

    .submit-event-card {
        padding: 20px;
    }

    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PARTNER LOGO SWIPERS - Silver, Prizing, Gifting
   ============================================ */

.partner-swiper {
    width: 100%;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.partner-swiper .swiper-wrapper {
    align-items: stretch;
}

.partner-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

/* Each logo box inside a slide (independent class — no longer
   shares a name with style.css's .partner-logo-box, so there's
   no cascade/specificity dependency between the two stylesheets) */
.partner-swiper-logo {
    flex: 1;
    min-width: 100%;
    width: 100%;
    max-width: 180px;
    background: #ffffff;
    border: 1px solid #e8ecf4;
    border-radius: 14px;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.partner-swiper-logo:hover {
    transform: translateY(1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 68, 148, 0.15);
}

.partner-swiper-logo img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-swiper-logo:hover img {
    transform: scale(1.05);
}

/* Swiper Navigation */
.partner-swiper .swiper-button-next,
.partner-swiper .swiper-button-prev {
    color: var(--eu-primary) !important;
    background: var(--eu-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--eu-grey-10);
    transition: all 0.3s ease;
    display: none;
}

.partner-swiper .swiper-button-next:after,
.partner-swiper .swiper-button-prev:after {
    font-size: 12px !important;
    font-weight: 700;
}

.partner-swiper .swiper-button-next:hover,
.partner-swiper .swiper-button-prev:hover {
    background: var(--eu-primary);
    color: var(--eu-white) !important;
    border-color: var(--eu-primary);
    transform: scale(1.1);
}

/* Swiper Pagination */
.partner-swiper .swiper-pagination {
    bottom: 6px !important;
}

.partner-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--eu-grey-25);
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-swiper .swiper-pagination-bullet-active {
    background: var(--eu-primary);
    width: 20px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .partner-swiper-logo {
        max-width: 140px;
        padding: 12px 10px;
        min-height: 60px;
    }

    .partner-swiper-logo img {
        max-height: 38px;
    }

    .partner-swiper .swiper-button-next,
    .partner-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .partner-swiper-logo {
        max-width: 120px;
        padding: 10px 8px;
        min-height: 50px;
    }

    .partner-swiper-logo img {
        max-height: 32px;
    }
}


.individual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.individual-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-left: 5px solid #003399;
    border-radius: 12px;
    padding: 18px 20px;
    min-height: 90px;
    transition: all 0.3s ease;
}

.individual-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.individual-icon {
    flex-shrink: 0;
}

.individual-icon i {
    font-size: 28px;
    color: #fcca00;
}

.individual-name {
    color: #003399;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .individual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .individual-grid {
        grid-template-columns: 1fr;
    }
}


/*Gallery*/
/* ============================================
   GALLERY GRID STYLES
   ============================================ */


.gallery-section-v2 {
    background: linear-gradient(180deg, #fff 0%, #eef1f8 50%, #f5f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Center the underline in the partners section header */
.gallery-section-header .title-underline {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CENTERED TITLE UNDERLINE (reusable)
   Use this class when you need the yellow
   underline centered beneath a section title.
   Does NOT override the original .title-underline.
   ============================================ */
.title-underline-center {
    width: 70px;
    height: 4px;
    background: var(--eu-yellow);
    margin: 0 auto 1.5rem;
    border: none;
    display: block;
}

/* Event Partners section header underline centering */
.partners-section-header .title-underline,
.partners-section-v2 .section-header .title-underline {
    margin-left: auto;
    margin-right: auto;
}

/* Explore Our Events section header underline */
.events-section-header .title-underline,
.explore-events-header .title-underline {
    margin-left: auto;
    margin-right: auto;
}



.gallery-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.8) 0%, transparent 35%);
    pointer-events: none;
}

.gallery-section-v2 .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    --gallery-gap: 12px;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 68, 148, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: all var(--transition-normal);
}

.gallery-overlay i {
    color: var(--eu-white);
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 767.98px) {
    .gallery-item {
        aspect-ratio: 1 / 1;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 60%, rgba(0, 68, 148, 0.6) 100%);
    }

    .gallery-overlay i {
        transform: translateY(0);
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}


/* ════════════════════════════════════════
   OPTION 2: MINIMALIST TIMELINE
   ════════════════════════════════════════ */
.panel-card {
    background: #003399;
    border-radius: 16px;
    padding: 28px 32px;
    border-left: 8px solid #f5a623;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.panel-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.panel-card.moderator {
    border-left-color: #f59e0b;
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5a623;
    border: 3px solid #f5a623;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #003399;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.moderator .dot {
    border-color: #f59e0b;
    color: #003399;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    background: #f5a623;
}

.card-title-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.card-title-block .role {
    font-size: 13px;
    font-weight: 600;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moderator .card-title-block .role {
    color: #f59e0b;
}

.panel-card p {
    font-size: 15px;
    color: #bfbfbf;
    line-height: 1.7;
    margin: 0;
}

.g-4 {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}








/*Vertical Tabs*/
/* ============================================
   EVENTS VERTICAL TABS - INNOVATIVE DESIGN
   ============================================ */

.events-vtabs-section {
    position: relative;
    background: linear-gradient(180deg, var(--eu-white) 0%, #f8fafd 40%, var(--eu-white) 100%);
    overflow: hidden;
}

.events-vtabs-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 68, 148, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.events-vtabs-section .section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--eu-primary);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.events-vtabs-section .section-label::before,
.events-vtabs-section .section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--eu-primary), var(--eu-secondary));
    border-radius: 1px;
}

.events-vtabs-section .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--eu-dark);
}

/* ============================================
   VERTICAL TABS SIDEBAR
   ============================================ */

.vtabs-sidebar {
    position: sticky;
    top: 100px;
    background: var(--eu-white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--eu-grey-10);
    overflow: hidden;
}

/* Sidebar Header */
.vtabs-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--eu-grey-10);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--eu-grey-50);
}

.vtabs-header i {
    color: var(--eu-primary);
    font-size: 1rem;
}

/* Tab Navigation */
.vtabs-nav {
    gap: 10px;
    border: none !important;
}

.vtabs-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background: var(--eu-grey-5);
    color: var(--eu-grey-75);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Left accent bar */
.vtabs-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--eu-primary), var(--eu-secondary));
    border-radius: 0 4px 4px 0;
    transition: transform 0.3s ease;
}

/* Tab Icon */
.vtabs-nav .nav-link .vt-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 68, 148, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eu-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

/* Tab Label */
.vtabs-nav .nav-link .vt-label {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Tab Count Badge */
.vtabs-nav .nav-link .vt-count {
    background: var(--eu-grey-10);
    color: var(--eu-grey-75);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    min-width: 26px;
    text-align: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

/* Arrow indicator */
.vtabs-nav .nav-link .vt-arrow {
    color: var(--eu-grey-25);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Hover State */
.vtabs-nav .nav-link:hover {
    background: var(--eu-primary-bg);
    color: var(--eu-primary);
    border-color: rgba(0, 68, 148, 0.1);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 68, 148, 0.08);
}

.vtabs-nav .nav-link:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.vtabs-nav .nav-link:hover .vt-icon {
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-secondary);
    transform: scale(1.1) rotate(-5deg);
}

.vtabs-nav .nav-link:hover .vt-count {
    background: var(--eu-primary);
    color: var(--eu-white);
}

.vtabs-nav .nav-link:hover .vt-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--eu-primary);
}

/* Active State */
.vtabs-nav .nav-link.active {
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-white);
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(0, 68, 148, 0.25);
    transform: translateX(8px);
}

.vtabs-nav .nav-link.active::before {
    transform: translateY(-50%) scaleY(1);
    background: var(--eu-secondary);
    width: 5px;
}

.vtabs-nav .nav-link.active .vt-icon {
    background: rgba(255, 214, 23, 0.2);
    color: var(--eu-secondary);
    transform: scale(1.1);
}

.vtabs-nav .nav-link.active .vt-count {
    background: var(--eu-secondary);
    color: var(--eu-dark);
    font-weight: 700;
}

.vtabs-nav .nav-link.active .vt-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--eu-secondary);
}

/* Sidebar Decoration */
.vtabs-decoration {
    margin-top: 24px;
    /*padding-top: 20px;
    border-top: 1px dashed var(--eu-grey-10);*/
    display: flex;
    align-items: center;
    gap: 12px;
}

.vtabs-decoration .deco-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--eu-primary), var(--eu-secondary));
    border-radius: 1px;
    opacity: 0.3;
}

.vtabs-decoration .deco-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--eu-secondary);
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   VERTICAL TABS CONTENT AREA
   ============================================ */

.vtabs-content {
    background: var(--eu-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--eu-grey-10);
    min-height: 500px;
}

/* Content Header */
.vtabs-content-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--eu-grey-10);
    position: relative;
}

.vtabs-content-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--eu-primary), var(--eu-secondary));
    border-radius: 1px;
}

.vtabs-content-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 68, 148, 0.1), rgba(0, 68, 148, 0.05));
    border: 1px solid rgba(0, 68, 148, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eu-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.vtabs-content-icon.past {
    background: linear-gradient(135deg, rgba(70, 122, 57, 0.1), rgba(70, 122, 57, 0.05));
    border-color: rgba(70, 122, 57, 0.12);
    color: var(--eu-success);
}

.vtabs-content-icon.forthcoming {
    background: linear-gradient(135deg, rgba(0, 111, 180, 0.1), rgba(0, 111, 180, 0.05));
    border-color: rgba(0, 111, 180, 0.12);
    color: var(--eu-info);
}

.vtabs-content-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--eu-dark);
    margin-bottom: 4px;
}

.vtabs-content-subtitle {
    font-size: 0.9rem;
    color: var(--eu-grey-75);
    margin: 0;
}

/* Tab Pane Animation */
.vtabs-content .tab-pane {
    animation: vtabContentFade 0.5s ease forwards;
}

@keyframes vtabContentFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   COMING SOON - EMPTY STATE DESIGN
   ============================================ */

.coming-soon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    padding: 20px;
}

.coming-soon-card {
    text-align: center;
    max-width: 480px;
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--eu-grey-5), var(--eu-white));
    border-radius: var(--radius-xl);
    border: 2px dashed var(--eu-grey-25);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 68, 148, 0.03) 0%, transparent 50%);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.coming-soon-card:hover {
    border-color: var(--eu-primary-light);
    box-shadow: 0 8px 32px rgba(0, 68, 148, 0.08);
    transform: translateY(-4px);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--eu-primary-bg), rgba(255, 214, 23, 0.15));
    border: 2px solid rgba(0, 68, 148, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-icon i {
    font-size: 2rem;
    color: var(--eu-primary);
}

.coming-soon-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--eu-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.coming-soon-text {
    font-size: 0.95rem;
    color: var(--eu-grey-75);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.btn-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    color: var(--eu-white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 68, 148, 0.2);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.btn-coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 68, 148, 0.3);
    color: var(--eu-white);
    background: linear-gradient(135deg, var(--eu-primary-dark), #002a5c);
    gap: 12px;
}

.btn-coming-soon i {
    transition: transform var(--transition-fast);
}

.btn-coming-soon:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE - VERTICAL TABS
   ============================================ */

@media (max-width: 991.98px) {
    .vtabs-sidebar {
        position: static;
        margin-bottom: 24px;
    }

    .vtabs-nav {
        flex-direction: column !important;
        gap: 10px;
    }

    .vtabs-nav .nav-link {
        flex: unset;
        width: 100%;
        min-width: 0;
        padding: 14px 16px;
        justify-content: flex-start;
    }

    .vtabs-nav .nav-link .vt-label {
        display: block;
        white-space: normal;
        line-height: 1.25;
    }

    .vtabs-nav .nav-link .vt-arrow {
        display: block;
    }

    .vtabs-nav .nav-link.active {
        transform: none;
    }

    .vtabs-nav .nav-link:hover {
        transform: none;
    }

    .vtabs-decoration {
        display: none;
    }

    .vtabs-header {
        justify-content: flex-start;
    }

    .vtabs-content {
        padding: 24px;
    }

    .vtabs-content-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .events-vtabs-section .section-title {
        font-size: 1.8rem;
    }

    .vtabs-nav .nav-link {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .vtabs-nav .nav-link .vt-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .vtabs-nav .nav-link .vt-label {
        display: block;
        white-space: normal;
        line-height: 1.25;
    }

    .vtabs-nav .nav-link .vt-count {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .vtabs-content {
        padding: 20px;
        min-height: auto;
    }

    .vtabs-content-header {
        padding-bottom: 16px;
        margin-bottom: 20px;
    }

    .vtabs-content-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .vtabs-content-title {
        font-size: 1.15rem;
    }

    .vtabs-content-subtitle {
        font-size: 0.8rem;
    }

    .vtabs-content .upcoming-event-content {
        padding: 24px;
    }

    /* Coming Soon Responsive */
    .coming-soon-wrapper {
        min-height: 280px;
        padding: 16px;
    }

    .coming-soon-card {
        padding: 32px 24px;
    }

    .coming-soon-icon {
        width: 64px;
        height: 64px;
    }

    .coming-soon-icon i {
        font-size: 1.6rem;
    }

    .coming-soon-title {
        font-size: 1.3rem;
    }

    .coming-soon-text {
        font-size: 0.85rem;
    }

    .btn-coming-soon {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .events-vtabs-section .section-title {
        font-size: 1.5rem;
    }

    .vtabs-sidebar {
        padding: 16px;
        border-radius: var(--radius-lg);
    }

    .vtabs-nav {
        gap: 8px;
    }

    .vtabs-nav .nav-link {
        padding: 10px 12px;
        border-radius: var(--radius-md);
        font-size: 0.85rem;
        gap: 10px;
    }

    .vtabs-nav .nav-link .vt-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .vtabs-nav .nav-link .vt-label {
        display: block;
        white-space: normal;
        line-height: 1.2;
    }

    .vtabs-nav .nav-link .vt-arrow {
        display: none;
    }

    .vtabs-content {
        padding: 16px;
        border-radius: var(--radius-lg);
    }

    .coming-soon-card {
        padding: 28px 20px;
    }

    .coming-soon-title {
        font-size: 1.15rem;
    }
}

/* ============================================
   EVENT PARTNERS SECTION V2
   (.partners-section-v2 category-card layout)
   These classes had no CSS defined anywhere,
   which caused the sponsor logos to collapse
   into an unstyled, misaligned stack.
   ============================================ */

.partners-section-v2 .partner-category-card {
    background: #ffffff;
    border: 1px solid #e8ecf4;
    border-left: 4px solid var(--card-accent, var(--eu-primary));
    border-radius: var(--radius-lg, 16px);
    padding: 28px 26px;
    height: 100%;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 68, 148, 0.08));
    transition: box-shadow 0.3s ease;
}

.partners-section-v2 .partner-category-card:hover {
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 68, 148, 0.12));
}

.partners-section-v2 .partner-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.partners-section-v2 .partner-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    font-size: 1.15rem;
    flex-shrink: 0;
    background: var(--card-accent-bg, var(--eu-primary-bg));
    color: var(--card-accent, var(--eu-primary));
}

.partners-section-v2 .partner-category-title {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--eu-dark, #1a1a2e);
    margin: 0;
}

/* Small colored underline beneath the category title */
.partners-section-v2 .partner-category-title::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    background: var(--card-accent, var(--eu-primary));
    border-radius: 2px;
}

/* Category accent colors — drive the left border, icon circle and underline */
.partners-section-v2 .category-platinum {
    --card-accent: #64748b;
    --card-accent-bg: #eef1f5;
}

.partners-section-v2 .category-gold {
    --card-accent: #c9a227;
    --card-accent-bg: #fbf3dc;
}

.partners-section-v2 .category-silver {
    --card-accent: #94a3b8;
    --card-accent-bg: #eef1f5;
}

.partners-section-v2 .category-celebration {
    --card-accent: #dc2626;
    --card-accent-bg: #fdecec;
}

.partners-section-v2 .category-gifting {
    --card-accent: #2f5fdb;
    --card-accent-bg: #e8f0ff;
}

.partners-section-v2 .category-knowledge {
    --card-accent: #7c3aed;
    --card-accent-bg: #f1e8fd;
}

.partners-section-v2 .category-prizing {
    --card-accent: #0d9488;
    --card-accent-bg: #e3f7f3;
}

/* Row that holds the logo boxes for non-swiper categories */
.partners-section-v2 .partner-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.partners-section-v2 .partner-logo-box {
    width: 45%;
    max-width: 260px;
    min-width: 140px;
    flex: 1 1 auto;
}

/* Larger logo size - add this class to any partner-logo-box that needs to be bigger */
.partners-section-v2 .partner-logo-box.partner-logo-lg,
.partners-section-v2 .partner-logos-row.single-logo .partner-logo-box {
    width: 48%;
    max-width: 280px;
    min-width: 160px;
}

@media (max-width: 575.98px) {
    .partners-section-v2 .partner-category-card {
        padding: 22px 18px;
    }

    .partners-section-v2 .partner-category-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .partners-section-v2 .partner-logo-box {
        width: 45%;
        min-width: 120px;
    }

    .partners-section-v2 .partner-logo-box.partner-logo-lg,
    .partners-section-v2 .partner-logos-row.single-logo .partner-logo-box {
        width: 48%;
        min-width: 140px;
    }
}
/* ── Redesigned Contact Section ── */
.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.contact-info-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8effa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eu-blue);
    font-size: 1rem;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000;
}

.contact-info-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
}

.contact-link-blue {
    color: var(--eu-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-link-blue:hover {
    color: var(--eu-primary);
    text-decoration: underline;
}

.contact-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d0daea, transparent);
    margin: 0 0.5rem;
}

.contact-coordinator-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-name-bold {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e4a;
}

.contact-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--eu-blue);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-phone-pill:hover {
    background: var(--eu-primary);
    color: #fff;
}

.contact-email-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}