/* ============================================================
   SYMPOSIUM — style.css
   Full vanilla CSS converted from Tailwind + Next.js
   ============================================================ */

/* ---------- Design Tokens (Colors, Typography) ---------- */
:root {
    /* Main logo colors */
    --primary: #EE6A31;
    /* Peak Vitality Orange */
    --secondary: #FFFFFF;
    /* White text for contrast */
    --electric-aqua: #EE6A31;
    --regal-blue: #d6551b;
    /* Hover orange */
    --light-yellow: #EE6A31;

    /* Backgrounds & cards */
    --icy-breeze: #163143;
    /* Lighter navy for cards */
    --pale-cyan: #163143;
    --aquamarine: #163143;
    --pale-sky-blue: #1c3c50;
    --light-sky-blue: #1c3c50;
    --pale-cerulean: #1c3c50;

    /* Text */
    --midnight-text: #FFFFFF;
    /* High contrast text */
    --slate-text: #aec2d3;
    /* Muted navy text */

    /* Dark Borders */
    --dark-border: #274b62;

    /* Dark Mode Defaults (now used natively) */
    --darkmode: #0f2532;
    /* Peak Vitality Navy */
    --darklight: #163143;
    --dark-text: #aec2d3;

    --yellow-rating: #FAB446;
    --shadow-hero: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
    --shadow-round: 0px 6px 10px 0px rgba(0, 0, 0, 0.25);
    --transition: 0.4s ease;
    --max-w: 85rem;
    /* 1200px */
    --border-radius-sm: 0.875rem;
    --border-radius-md: 1.375rem;
    --border-radius-xl: 10.375rem;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--midnight-text);
    background: var(--darkmode);
    margin: 0;
    padding: 0;

}



a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.75rem;
}

/* ---------- Section Defaults ---------- */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 2.5rem 0;
    }
}

/* ---------- Typography ---------- */
h1 {
    font-size: 3.3125rem;
    line-height: 3.875rem;
    font-weight: 700;
    color: var(--midnight-text);
}

h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #0f2532;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.section-title {
    margin-bottom: 3rem;
}

/* ---------- Buttons ---------- */
.btn-primary {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: var(--primary);
    color: #fff !important;
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
    text-align: center;
    z-index: 1;
}

.btn-primary:hover {
    background: var(--regal-blue);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(47, 115, 242, 0.4);
}

.btn-outline-primary {
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: #0f2532;
    transition: background var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);

}

.site-header.sticky {
    background: #0f2532;
    /* Solid pure navy, not transparent */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}



.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.7rem;
    transition: height var(--transition);
}

.logo-link {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.logo-img {
    width: auto;
    height: auto;
    max-width: 250px;
    padding: 0;
    margin: 0;
    transition: max-width var(--transition);
}

/* Shrink header & logo on scroll */
.site-header.sticky .header-inner {
    height: 4rem;
}

.site-header.sticky .logo-img {
    max-width: 180px;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--midnight-text);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
    font-family: 'Outfit', 'Open Sans', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}





.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight-text);
    transition: color var(--transition);
}

.icon-moon,
.icon-sun {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}



/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #fff;
    background: #0f2532;
    border-radius: 40px;
    border: 1px solid #EE6A31;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', 'Open Sans', sans-serif;
}

.lang-btn:hover {
    background: #EE6A31;
    color: #fff;
}

.lang-btn.active {
    background: #0f2532;
    color: #fff;
    border-color: #e79471;
}

.lang-btn.active:hover {
    background: #EE6A31;
    color: #0f2532;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--midnight-text);
    border-radius: 2px;
    transition: background var(--transition);
}



/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.mobile-overlay.active {
    display: block;
}

/* Mobile Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 16rem;
    background: #fff;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}



.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #d6551b
}

.mobile-menu-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f2532;
    font-family: 'Outfit', 'Open Sans', sans-serif;
}



.mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--midnight-text);
}



.mobile-nav {
    padding: 1rem;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.6rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #0f2532;
    transition: color var(--transition);
    font-family: 'Outfit', 'Open Sans', sans-serif;
}



.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-btn-outline {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    border: 1px solid var(--primary);
    border-radius: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.mobile-btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ---------- HERO SLIDER SECTION ---------- */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 90vh;
    margin-top: 5.7rem;
    /* Fixed exactly to viewport minus header */
    overflow: hidden;
}

/* Each slide */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.85s ease, transform 0.85s ease;
    transform: scale(1.03);
    pointer-events: none;
    z-index: 0;
    height: 100%;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
    /* Kept as position: absolute via inset to maintain bounds */
}

/* Background image */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay — soft gradient on the left to make white text readable, transparent on the right 
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right,
            rgba(15, 37, 50, 0.9) 0%,
            rgba(15, 37, 50, 0.6) 30%,
            rgba(15, 37, 50, 0.3) 50%,
            transparent 75%);
    z-index: 1;
}*/

.hero-slide-overlay {
    position: absolute;
	width:47%; 
	height:280px; 
	top:45%; 
	border-radius: 0 140px 140px 0;
    background: rgba(240,114,54,0.8);
	backdrop-filter: blur(6px);
    z-index: 1;
	transform: translateX(-600px);
	transition: transform 0.4s ease-out;
	}
.hero-slide.active .hero-slide-overlay {
    position: absolute;
	width:47%; 
	height:280px; 
	top:45%; 
	border-radius: 0 140px 140px 0;
    background: rgba(240,114,54,0.8);
	backdrop-filter: blur(6px);
    z-index: 1;
	transform: translateX(0px);
	transition: transform 0.5s ease-in;
	}

/* Inner content container */
.hero-slide-inner {
    position: relative;
    z-index: 2;
    display: flex; 
	top:45%;
    height: 100%;
    padding: 25px; 
	transform: translateX(-600px);
	transition: transform 0.4s ease-out;
}
.hero-slide.active .hero-slide-inner {
    position: relative;
    z-index: 2;
    display: flex; 
	top:45%;
    height: 100%;
    padding: 30px 15px; 
	transform: translateX(0px);
	transition: transform 0.5s ease-in;
}

/* Text content */
.hero-slide-content {
    max-width: 540px;
}

/* Tag pill */
.hero-slide-content .hero-tag {
    display: inline-block; 
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.hero-slide-content .hero-tag::after {
    display: none;
}

.hero-slide-content .hero-title {
	max-width: 470px;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    padding: 0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-slide-content .hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding: 0; 
}

/* Hero Text Link */
.hero-slide-content .hero-text-link {
    display: inline-block;
    color: #0f2532;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition), transform 0.2s ease;
}

.hero-slide-content .hero-text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background:#0f2532;
    transition: width var(--transition);
}

.hero-slide-content .hero-text-link:hover::after {
    width: 100%;
}

.hero-slide-content .hero-text-link:hover {
    color: #0f2532; 
}

/* Arrows hidden — auto-advance only */

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.3);
    border-color: #fff;
}





.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-btn-1,
.hero-btn-2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-icon,
.calendar-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ticket-icon {
    background-image: url('images/hero/tickets.svg');
}

.calendar-icon {
    background-image: url('images/hero/calander.svg');
}

.hero-btn-2:hover .calendar-icon {
    background-image: url('images/hero/calander-hover-white.svg');
}

/* Hero Right */
.hero-images {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-img-left,
.hero-img-right {
    position: relative;
    flex: 1;
}

.hero-img-left {
    background: var(--electric-aqua);
    border-radius: var(--border-radius-xl) 0 var(--border-radius-xl) 0;
}

.hero-img-right {
    background: var(--primary);
    border-radius: 0 var(--border-radius-xl) 0 var(--border-radius-xl);
    margin-top: 8rem;
}

.hero-portrait {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-card {
    position: absolute;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-hero);
    padding: 1rem 1.25rem;
}

.hero-card-yellow {
    background: #FEF08A;
    top: 4rem;
    left: -5rem;
}

.hero-card-green {
    background: var(--aquamarine);
    top: 6rem;
    right: -5rem;
}

.hero-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #78350f;
}

.hero-card-green .hero-card-name {
    color: #14532d;
}

.hero-card-rating {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #78350f;
}

.hero-card-green .hero-card-rating {
    color: #14532d;
}

/* ---------- CONFERENCES / WHO WE ARE ---------- */
.conferences-section {
    background: white;
    position: relative;
    overflow: hidden;
}






.conferences-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.conferences-grid>div {
    min-width: 0;
}

@media (max-width: 768px) {
    .conferences-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Thumb nav and dot nav removed */

/* Right-panel content fade transition */
.conferences-text {
    transition: opacity 0.35s ease;
}

.conferences-text.fading {
    opacity: 0;
}

/* ---- Premium Who We Are right-panel styles ---- */

/* Eyebrow label */
.wwa-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.wwa-eyebrow-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.wwa-eyebrow-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

/* Heading */
.wwa-heading {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--secondary);
    margin-bottom: 1rem;
}



/* Stats row */
.wwa-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1.75rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--icy-breeze);
    border-radius: 0.875rem;
    border-left: 4px solid var(--primary);
}



.wwa-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.wwa-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.wwa-stat-plus {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.wwa-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-text);
    margin-top: 0.25rem;
    text-align: center;
    letter-spacing: 0.04em;
}



.wwa-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: #cbd5e1;
    flex-shrink: 0;
}



/* Feature list */
.wwa-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wwa-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.wwa-feature-icon {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.wwa-feature-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    stroke: #fff;
}

.wwa-feature-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}



.wwa-feature-item p {
    font-size: 0.875rem;
    color: var(--slate-text);
    line-height: 1.6;
    margin: 0;
}



/* CTA button */
.wwa-cta {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 0.5rem;
    transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
}

.wwa-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(47, 115, 242, 0.35);
}


/* Thumbnail Carousel */
.thumbnail-carousel {
    width: 100%;
}

/* Static single image for Who We Are */
.wwa-static-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid #BBB;
    display: block;
}

.wwa-static-img:hover {
    border: 1px solid #EE6A31;
}

.main-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 0.75rem;
    height: 500px;
}

.main-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
    pointer-events: none;
}

.main-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.carousel-img.full-width {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #EE6A31;
    object-fit: cover;
}

/* Conferences Right Text */
.conferences-text h2 {
    color: #0f2532;
}

.conferences-desc {
    font-size: 0.9375rem;
    color: #0f2532;
    font-weight: 400;

    padding-top: 1.25rem;
    line-height: 1.75;
}

/* Brand Slider */
.brand-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    margin-top: 2rem;
    position: relative;
}

.brand-slider-container::before,
.brand-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.brand-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: scrollBrands 15s linear infinite;
}

.brand-slider-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    height: 150px;
    width: auto;
    border-radius: 10px;
    filter: brightness(0.9);
    transition: opacity var(--transition), filter var(--transition);
}

.brand-logo:hover {
    opacity: 1;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}



/* ---------- SPEAKERS / PRODUCTS ---------- */
.speakers-section {
    padding: 5rem 0;
    background-color: #FFFFFFDB;
}



.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 2rem;
    margin: 0 1.75rem;
}

@media (max-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .speaker-offset {
        margin-top: 0 !important;
    }
}

@media (max-width: 640px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

.speaker-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 7px;
    border: 1px solid #BBB;
}

.speaker-card:hover {
    border: 1px solid #EE6A31;
}

.speaker-card.speaker-offset {
    margin-top: 3rem;
}

.speaker-img-wrap {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    width: 100%;
    background: var(--darklight);
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.speaker-card:hover .speaker-img {
    transform: scale(1.1);
}

.speaker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    /* Orange background with 50% transparency */ 
	background: rgba(240,114,54,0.7);
    /* Adjust shade as needed */

    /* Optional glass effect */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    padding: 1.5rem 1rem 1.5rem;
    text-align: center;
 
    transform: translateY(100%);
    transition: transform var(--transition);
    z-index: 5;

    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
}

.speaker-card:hover .speaker-info {
    transform: translateY(0);
}

.speaker-name {
    font-size: 0.9375rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;

}

/* ---------- TICKET SECTION CTA ---------- */
.ticket-section {
    padding-top: 0;
}



.ticket-card {
    background: var(--primary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 5rem auto 0;
    /* creates footer overlap effect */
    z-index: 2;
}

.ticket-bg-img {
    position: absolute;
    top: 0;
    left: -4px;
    width: 60%;
    display: none;
}

@media (min-width: 768px) {
    .ticket-bg-img {
        display: block;
    }
}

.ticket-bg-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ticket-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 5rem;
    margin-left: auto;
    width: 42%;
    min-height: 220px;
    text-align: left;
}

@media (max-width: 1023px) {
    .ticket-content {
        width: 100%;
        text-align: center;
        align-items: center;
        padding: 3rem 1.5rem;
    }
}

.ticket-heading {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    max-width: 22.8rem;
    padding-bottom: 2.25rem;
    line-height: 1.4;
}

.btn-ticket {
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 1rem 5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--electric-aqua);
    color: #fff;
    background: var(--electric-aqua);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
    z-index: 1;
}

.btn-ticket::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--electric-aqua);
    transition: height var(--transition);
    z-index: -1;
}

.btn-ticket:hover::before {
    height: 0;
}

.btn-ticket:hover {
    background: transparent;
    color: var(--electric-aqua);
}

/* ---------- WHY CHOOSE US ---------- */

.why-section {
    padding: 5rem 0 5rem;
    background: white;
    box-shadow: rgba(47, 115, 242, 0.07), 0 8px 32px rgba(47, 115, 242, 0.07);
}




/* Label row */
.why-label-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.why-label-line {
    display: block;
    flex: 1;
    max-width: 8rem;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0.2);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.conferences-section:hover .why-label-line,
.why-section:hover .why-label-line,
.contact-section:hover .why-label-line {
    transform: scaleX(1);
}

.why-label-contact {
    font-size: 0.9375rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.why-label-line-contact {
    display: block;
    flex: 1;
    max-width: 8rem;
    height: 2px;
    background: #163143;
    border-radius: 2px;
    transform: scaleX(0.2);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.conferences-section:hover .why-label-line,
.why-section:hover .why-label-line,
.contact-section:hover .why-label-line-contact {
    transform: scaleX(1);
}

@keyframes expandLine {
    0% {
        transform: scaleX(0.2);
    }

    50% {
        transform: scaleX(0.8);
        /* Changed to 0.8 to leave room for hover stretch */
    }

    100% {
        transform: scaleX(0.2);
    }
}

/* Large heading */
.why-heading {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #0f2532;
    max-width: 52rem;
    margin-bottom: 1.5rem;
}



/* 3-card grid */
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (max-width: 900px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}

.why-card {
    border: 1px solid #BBB;
    border-radius: 7px;
    overflow: hidden;
    background: white;
    transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
    border: 1px solid #EE6A31;

}



.why-card:hover {
    box-shadow: 0 12px 32px rgba(47, 115, 242, 0.12);
    transform: translateY(-4px);
}

.why-card-img-wrap {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-bottom: 4px solid #EE6A31;
}

.why-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.why-card:hover .why-card-img {
    transform: scale(1.05);
}

.why-card-body {
    padding: 1.5rem 1.25rem 1.75rem;
    background: transparent;
}

.why-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.why-card-text {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #0f2532;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}



.why-card-text:last-child {
    margin-bottom: 0;
}



/* ---------- CONTACT SECTION ---------- */
.contact-section {
    padding: 0;
    background: #EE6A31;
}

.contact-full-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    min-height: 500px;
}

@media (max-width: 768px) {
    .contact-full-grid {
        grid-template-columns: 1fr;
    }
}

/* Left: Stacked text + info panel */
.contact-left-stack {
    display: flex;
    flex-direction: column;
    background: transparent;
    color: #163143;
}

/* Left: Image */
.contact-img-col {
    position: relative;
    min-height: 500px;
}

.contact-img-col img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: calc(-1 * max(0px, (100vw - var(--max-w)) / 2));
    width: calc(100% + max(0px, (100vw - var(--max-w)) / 2));
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top text block */
.contact-text-col {
    padding: 3rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Bottom row side-by-side wrapper */
.contact-bottom-row {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Bottom company info block */
.contact-info-col {
    padding: 0 0 0 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.contact-text-body {
    flex: 1;
}

/* Company row — label beside details */
.contact-company-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 0;
}

.contact-company-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #163143;
    white-space: nowrap;
    min-width: 5.5rem;
    padding-top: 0.2rem;
}

.contact-company-details {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}



.contact-text-title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}


.contact-text-body p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-text-body p:last-child {
    margin-bottom: 0;
}

.contact-info-title {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-info-text {
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #fff;
}

.contact-info-link {


    padding-bottom: 2px;
    display: inline-block;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    transition: color var(--transition);
    color: #fff;
}

.contact-info-link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .contact-left-stack {
        order: 2;
    }

    .contact-img-col {
        order: 1;
        min-height: 280px;
        position: relative;
    }

    .contact-img-col img {
        position: relative;
        inset: auto;
        height: 280px;
    }

    .contact-text-col,
    .contact-info-col {
        padding: 2rem 1.5rem;
    }

    .contact-bottom-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info-col {
        padding: 1.5rem 0 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-company-row {
        flex-direction: column;
        gap: 0.75rem;
    }
}


/* ---------- FOOTER ---------- */
.site-footer {
    background: #0f2532;
    /* Matching the dark theme instead of white */
    padding: 0;
    border-top: 1px solid #fff;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 11rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--dark-border);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .footer-top {
        padding-top: 4rem;
        padding-bottom: 1.5rem;
    }
}

.contact-info-link i {
    color: #163143;
    /* Change to your preferred orange shade */
    margin-right: 8px;
    /* Optional spacing between icon and text */
}

.contact-info-link i:hover {
    transform: scale(1.2);
}

.footer-logo-wrap a {
    display: inline-block;
}

.footer-logo {
    width: auto;
    height: auto;
    max-width: 160px;
}

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.875rem;
    align-items: center;
}

.footer-nav-link {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--pale-cerulean);
    transition: color var(--transition);
}

@media (max-width: 768px) {
    .footer-nav-link {
        font-size: 1rem;
    }
}

.footer-nav-link:hover {
    color: var(--primary);
}

.social-list {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-link svg {
    transition: fill var(--transition);
}

.social-link:hover svg {
    fill: var(--electric-aqua) !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.footer-copy p,
.footer-policy p {
    font-size: 0.8rem;
    font-weight: 400;
    color: #aec2d3;
    line-height: 1.6;
}

.footer-policy a {
    color: #EE6A31;
    transition: color var(--transition);
}

.footer-policy a:hover {
    color: #fff;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .btn-outline-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-card-green {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 6.5rem;
        min-height: auto;
    }

    .ticket-content {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
}