/* ===================================
   ComplyFest 2026 – Agenda Page Styles
   =================================== */

/* ── Agenda Hero ── */
.agenda-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-color: #070708;
    color: #ffffff;
}

.agenda-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/agendaHero.jpg');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

.agenda-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3, 3, 4, 0.98) 0%,
        rgba(3, 3, 4, 0.80) 15%,
        rgba(0, 0, 0, 0.35) 30%
    );
    z-index: 1;
}

.agenda-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.agenda-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px 80px;
}

.agenda-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

.agenda-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.agenda-hero-title {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.6rem, 5vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
    margin: 0;
    overflow-wrap: anywhere;
}

.agenda-hero-title .title-accent {
    color: #E43227;
}

.agenda-hero-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 6px;
}

.agenda-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    text-align: justify;
}

.agenda-hero-meta {
    display: grid;
    width: 100%;
    max-width: 760px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    justify-content: center;
    margin: 0 auto;
}

.agenda-meta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
}

.agenda-meta-item i {
    color: #E43227;
    font-size: 1rem;
}

.agenda-meta-item:hover {
    background: rgba(228, 50, 39, 0.12);
    border-color: rgba(228, 50, 39, 0.3);
    transform: translateY(-2px);
}


/* ── Event Day Overview ── */
.agenda-overview-section {
    background: #070708;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.agenda-overview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(228, 50, 39, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(94, 152, 67, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.agenda-day-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.2), rgba(148, 66, 33, 0.2));
    border: 1px solid rgba(228, 50, 39, 0.3);
    border-radius: 50px;
    color: #E43227;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.agenda-day-badge i {
    font-size: 0.85rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.overview-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E43227, #944221);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(228, 50, 39, 0.3);
    box-shadow: 0 20px 50px rgba(228, 50, 39, 0.15);
}

.overview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.15), rgba(148, 66, 33, 0.1));
    border-radius: 16px;
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #E43227, #944221);
}

.overview-icon i {
    font-size: 24px;
    color: #E43227;
    transition: color 0.3s ease;
}

.overview-card:hover .overview-icon i {
    color: #ffffff;
}

.overview-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.overview-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}


/* ── Agenda Timeline ── */
.agenda-timeline-section {
    background: #0a0a0b;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.agenda-timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(228, 50, 39, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(60, 172, 168, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Timeline Navigation Tabs */
.agenda-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.agenda-nav-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agenda-nav-btn i {
    font-size: 0.8rem;
}

.agenda-nav-btn:hover {
    background: rgba(228, 50, 39, 0.1);
    border-color: rgba(228, 50, 39, 0.3);
    color: #ffffff;
}

.agenda-nav-btn.active {
    background: linear-gradient(135deg, #E43227, #944221);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(228, 50, 39, 0.4);
}

/* Timeline Container */
.timeline-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

/* Vertical line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(228, 50, 39, 0.5), rgba(228, 50, 39, 0.1));
    z-index: 0;
}

/* Timeline Block */
.timeline-block {
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.timeline-block[data-category] {
    display: block;
}

.timeline-block.hidden {
    display: none;
}

/* Time marker */
.timeline-time-marker {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
    position: relative;
}

.time-dot {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: linear-gradient(135deg, #E43227, #944221);
    border-radius: 50%;
    position: relative;
    left: 42px;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(228, 50, 39, 0.2);
    transition: all 0.3s ease;
}

.time-dot.break-dot {
    background: linear-gradient(135deg, #3CACA8, #2d8a87);
    box-shadow: 0 0 0 4px rgba(60, 172, 168, 0.2);
}

.time-dot.keynote-dot {
    width: 22px;
    height: 22px;
    min-width: 22px;
    left: 40px;
    background: linear-gradient(135deg, #f4a21f, #d89419);
    box-shadow: 0 0 0 4px rgba(244, 162, 31, 0.2), 0 0 20px rgba(244, 162, 31, 0.3);
}

.time-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E43227;
    letter-spacing: 0.5px;
    padding-left: 36px;
    white-space: nowrap;
}

/* Session Card */
.timeline-card {
    margin-left: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #E43227, #944221);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-card:hover {
    transform: translateX(8px);
    border-color: rgba(228, 50, 39, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Card Variants */
.timeline-card.keynote-card {
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.08), rgba(244, 162, 31, 0.02));
    border-color: rgba(244, 162, 31, 0.2);
}

.timeline-card.keynote-card::before {
    background: linear-gradient(to bottom, #f4a21f, #d89419);
    opacity: 1;
}

.timeline-card.keynote-card:hover {
    border-color: rgba(244, 162, 31, 0.4);
    box-shadow: 0 15px 40px rgba(244, 162, 31, 0.15);
}

.timeline-card.break-card {
    background: linear-gradient(135deg, rgba(60, 172, 168, 0.06), rgba(60, 172, 168, 0.02));
    border-color: rgba(60, 172, 168, 0.15);
    padding: 20px 32px;
}

.timeline-card.break-card::before {
    background: linear-gradient(to bottom, #3CACA8, #2d8a87);
    opacity: 1;
}

.timeline-card.panel-card {
    background: linear-gradient(135deg, rgba(94, 152, 67, 0.06), rgba(94, 152, 67, 0.02));
    border-color: rgba(94, 152, 67, 0.15);
}

.timeline-card.panel-card::before {
    background: linear-gradient(to bottom, #5E9843, #4a7c35);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.session-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-keynote {
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.25), rgba(244, 162, 31, 0.1));
    color: #f4a21f;
    border: 1px solid rgba(244, 162, 31, 0.3);
}

.badge-panel {
    background: linear-gradient(135deg, rgba(94, 152, 67, 0.25), rgba(94, 152, 67, 0.1));
    color: #5E9843;
    border: 1px solid rgba(94, 152, 67, 0.3);
}

.badge-workshop {
    background: linear-gradient(135deg, rgba(60, 172, 168, 0.25), rgba(60, 172, 168, 0.1));
    color: #3CACA8;
    border: 1px solid rgba(60, 172, 168, 0.3);
}

.badge-break {
    background: linear-gradient(135deg, rgba(60, 172, 168, 0.25), rgba(60, 172, 168, 0.1));
    color: #3CACA8;
    border: 1px solid rgba(60, 172, 168, 0.3);
}

.badge-networking {
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.25), rgba(228, 50, 39, 0.1));
    color: #E43227;
    border: 1px solid rgba(228, 50, 39, 0.3);
}

.badge-track {
    background: linear-gradient(135deg, rgba(148, 66, 33, 0.25), rgba(148, 66, 33, 0.1));
    color: #c47a4a;
    border: 1px solid rgba(148, 66, 33, 0.3);
}

.sub-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

/* Card Focus */
.card-focus {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 10px;
    margin-top: 0;
}

/* Card Description */
.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Speaker Row */
.card-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.speaker-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.speaker-mini:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(228, 50, 39, 0.3);
    transform: translateY(-2px);
}

.speaker-mini-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(228, 50, 39, 0.4);
}

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

.speaker-mini-avatar.placeholder {
    background: linear-gradient(135deg, #E43227, #944221);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-mini-avatar.placeholder i {
    font-size: 16px;
    color: #ffffff;
}

.speaker-mini-info {
    display: flex;
    flex-direction: column;
}

.speaker-mini-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.speaker-mini-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

/* Location tag */
.card-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.card-location i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}


/* ── Breakout Tracks Preview ── */
.agenda-tracks-section {
    background: #070708;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.agenda-tracks-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(228, 50, 39, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(94, 152, 67, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.tracks-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.track-preview-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.track-preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-preview-card:hover::before {
    opacity: 1;
}

.track-preview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(228, 50, 39, 0.3);
    box-shadow: 0 15px 40px rgba(228, 50, 39, 0.12);
}

.track-preview-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.15), rgba(148, 66, 33, 0.1));
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.track-preview-card:hover .track-preview-icon {
    background: linear-gradient(135deg, #E43227, #944221);
    transform: scale(1.08);
}

.track-preview-icon i {
    font-size: 24px;
    color: #E43227;
    transition: color 0.3s ease;
}

.track-preview-card:hover .track-preview-icon i {
    color: #ffffff;
}

.track-preview-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.track-preview-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.track-preview-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 12px;
}

.track-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.track-time i {
    font-size: 0.75rem;
    color: #E43227;
}


/* ── Image Feature Section ── */
.agenda-feature-section {
    background: #070708;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.agenda-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.agenda-feature-image {
    position: relative;
    overflow: hidden;
}

.agenda-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.agenda-feature-image:hover img {
    transform: scale(1.05);
}

.agenda-feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(7, 7, 8, 0.8) 100%);
    pointer-events: none;
}

.agenda-feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
}

.agenda-feature-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(228, 50, 39, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.feature-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E43227;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-eyebrow i {
    font-size: 0.8rem;
}

.agenda-feature-text h2 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.agenda-feature-text h2 .hl {
    color: #E43227;
}

.agenda-feature-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.agenda-feature-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #320802;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
    z-index: 1;
    width: fit-content;
}

.agenda-feature-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.agenda-feature-cta:hover {
    background: #E43227;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(228, 50, 39, 0.4);
}

.agenda-feature-cta:hover i {
    transform: translateX(4px);
}


/* ── Download / CTA Section ── */
.agenda-cta-section {
    background: #070708;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.agenda-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(228, 50, 39, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.agenda-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(228, 50, 39, 0.08), rgba(148, 66, 33, 0.04));
    border: 1px solid rgba(228, 50, 39, 0.2);
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.agenda-cta-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.agenda-cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-agenda-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #E43227, #944221);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(228, 50, 39, 0.3);
}

.btn-agenda-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 50, 39, 0.45);
}

.btn-agenda-primary i {
    transition: transform 0.3s ease;
}

.btn-agenda-primary:hover i {
    transform: translateX(4px);
}

.btn-agenda-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-agenda-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-agenda-secondary i {
    transition: transform 0.3s ease;
}

.btn-agenda-secondary:hover i {
    transform: translateX(4px);
}


/* ═══════════════════════════════════
   RESPONSIVE — Agenda Page
   ═══════════════════════════════════ */

/* Tablet Landscape (900–1199px) */
@media screen and (max-width: 1199px) {
    .agenda-hero {
        min-height: 100dvh;
        align-items: flex-end;
        padding-top: 0;
    }

    .agenda-hero .container {
        padding-bottom: 64px;
    }

    .agenda-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .agenda-hero-title {
        font-size: clamp(2.2rem, 4vw, 3.8rem);
    }

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

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

    .agenda-feature-text {
        padding: 60px 40px;
    }

    .agenda-feature-text h2 {
        font-size: 2.2rem;
    }
}

/* Tablet Portrait (768–899px) */
@media screen and (max-width: 899px) {
    .agenda-hero {
        min-height: 100dvh;
        align-items: flex-end;
        padding-top: 0;
    }

    .agenda-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .agenda-hero .container {
        padding: 0 24px 56px;
    }

    .agenda-hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .agenda-hero-meta {
        order: 1;
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 12px;
    }

    .agenda-hero-desc {
        order: 2;
        text-align: left;
    }

    .agenda-meta-item {
        max-width: 100%;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .timeline-container::before {
        left: 24px;
    }

    .time-dot {
        left: 16px;
    }

    .time-dot.keynote-dot {
        left: 14px;
    }

    .time-label {
        padding-left: 20px;
    }

    .timeline-card {
        margin-left: 60px;
        padding: 24px;
    }

    .tracks-preview-grid {
        grid-template-columns: 1fr;
    }

    .agenda-feature-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .agenda-feature-image {
        height: 350px;
    }

    .agenda-feature-image::after {
        background: linear-gradient(to bottom, transparent 50%, rgba(7, 7, 8, 0.9) 100%);
    }

    .agenda-feature-text {
        padding: 50px 24px;
    }

    .agenda-feature-text h2 {
        font-size: 2rem;
    }
}

/* Mobile (0–767px) */
@media screen and (max-width: 767px) {
    .agenda-hero {
        min-height: 100dvh;
        align-items: flex-end;
        padding-top: 0;
    }

    .agenda-hero .container {
        padding: 0 16px 40px;
    }

    .agenda-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .agenda-hero-desc {
        font-size: 0.95rem;
    }

    .agenda-hero-meta {
        order: 1;
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        gap: 10px;
        max-width: 100%;
    }

    .agenda-meta-item {
        width: 100%;
        min-width: 0;
        border-radius: 14px;
        padding: 12px 14px;
        justify-content: center;
    }

    .agenda-hero-desc {
        order: 2;
    }

    .agenda-overview-section,
    .agenda-timeline-section,
    .agenda-tracks-section,
    .agenda-cta-section {
        padding: 60px 0;
    }

    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .overview-card {
        padding: 24px 16px;
    }

    .overview-icon {
        width: 48px;
        height: 48px;
    }

    .overview-icon i {
        font-size: 20px;
    }

    .overview-card h4 {
        font-size: 1rem;
    }

    /* Timeline mobile adjustments */
    .timeline-container::before {
        left: 14px;
    }

    .time-dot {
        left: 6px;
        width: 14px;
        height: 14px;
        min-width: 14px;
    }

    .time-dot.keynote-dot {
        width: 18px;
        height: 18px;
        min-width: 18px;
        left: 4px;
    }

    .time-label {
        padding-left: 14px;
        font-size: 0.8rem;
    }

    .timeline-card {
        margin-left: 40px;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .card-header {
        flex-direction: column;
        gap: 8px;
    }

    .card-header h3 {
        font-size: 1.05rem;
    }
    .sub-header {
        flex-direction: column;
        gap: 8px;
    }
    .card-speakers {
        flex-direction: column;
        gap: 10px;
    }

    .agenda-nav {
        gap: 8px;
        margin-bottom: 40px;
    }

    .agenda-nav-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .track-preview-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .agenda-feature-image {
        height: 260px;
    }

    .agenda-feature-text {
        padding: 40px 20px;
    }

    .agenda-feature-text h2 {
        font-size: 1.8rem;
    }

    .agenda-cta-box {
        padding: 40px 24px;
    }

    .agenda-cta-box h2 {
        font-size: 1.6rem;
    }

    .cta-buttons-row {
        flex-direction: column;
        align-items: center;
    }

    .btn-agenda-primary,
    .btn-agenda-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (0–400px) */
@media screen and (max-width: 400px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .agenda-hero-title {
        font-size: 1.6rem;
    }

    .timeline-card {
        margin-left: 32px;
    }
}
