* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0A1A2E;
    --dark-blue: #0F2537;
    --accent-blue: #1E7BA8;
    --light-blue: #E8F4F8;
    --ocean-blue: #2C9BC4;
    --sand: #F5F1E8;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    
    /* Yacht & Beaches Theme Colors */
    --yacht-white: #FAFAFA;
    --beach-sand: #F4E8D4;
    --ocean-teal: #1A8FA0;
    --ocean-deep: #0D4A5A;
    --sunset-coral: #FF6B6B;
    --sunset-gold: #FFD93D;
    --navy-luxury: #0B1B2E;
    --tropical-turquoise: #40E0D0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--primary-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: transparent;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: transparent;
    display: block;
}

.logo-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.logo-pr {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 50%, var(--ocean-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-pr-gradient {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 50%, var(--ocean-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.has-dropdown::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8px;
    margin-left: 6px;
    vertical-align: middle;
}

.header-cta {
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.3);
}

.header-cta:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    min-width: 40px;
    min-height: 40px;
    -webkit-user-select: none;
    user-select: none;
}

.nav-close {
    display: none;
}

.nav-image {
    display: none;
}

.mobile-menu-toggle i {
    font-size: 24px;
    color: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

/* Left Sidebar Contact */
.contact-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 16px;
    background: rgba(10, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 12px 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
}

.contact-item-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 50%, var(--ocean-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 217, 61, 0.3);
}

.contact-item-icon i {
    font-size: 14px;
    color: var(--navy-luxury);
    font-weight: 600;
}

.contact-item-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 11px;
    opacity: 0.8;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item-text:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('../images/Revamped.png') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::after {
    content: "";
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: -0.3%;
    left: 0;
    background-size: auto;
    background-repeat: repeat no-repeat;
    background-position: 20vw bottom;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 60' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 45L50 43C100 41 200 37 300 35C400 33 500 33 600 35C700 37 800 41 900 43C1000 45 1100 45 1150 45L1200 45V60H1150C1100 60 1000 60 900 60C800 60 700 60 600 60C500 60 400 60 300 60C200 60 100 60 50 60H0V45Z' fill='%230A1A2E'/></svg>");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-main {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-date-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--sunset-gold);
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 217, 61, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: "Helvetica Neue", "Helvetica Neue Condensed", "Helvetica", "Arial Narrow", sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    font-stretch: condensed;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--white);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.4;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
}

.hero-location-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-date {
    display: inline;
}

.hero-venue {
    display: inline;
    font-size: 15px;
    white-space: nowrap;
}

.hero-hosted {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-hosted span:first-child {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.hosted-by {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 50%, var(--ocean-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 16px;
}

.location-icon {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 50%, var(--ocean-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

.hero-location i {
    font-size: 18px;
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 50%, var(--ocean-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-highlights {
    margin-bottom: 40px;
}

.event-highlights-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.highlights-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.highlights-list li {
    color: var(--white);
    font-size: 16px;
    position: relative;
    padding-left: 0;
}

.highlights-list li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -16px;
    color: rgba(255, 255, 255, 0.3);
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px 20px;
    min-width: 100px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 217, 61, 0.3);
}

.cta-button-primary .mobile-text {
    display: none;
}

.cta-button-primary i {
    font-size: 16px;
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 217, 61, 0.5);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--white);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-secondary.mobile-only {
    display: none;
}

.cta-button-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Spline 3D Container */
.spline-container {
    width: 100%;
    height: 100%;
    min-height: 800px;
    position: absolute;
    top: 0;
    left: 0;
}

#canvas3d {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
    transform: scale(0.6) translateY(-35%);
    transform-origin: center center;
}

/* Speaker Profile */
.speaker-profile {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.speaker-image-wrapper {
    position: relative;
    width: 320px;
    height: 350px;
    overflow: hidden;
}

.speaker-image-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 1;
}

.speaker-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
}

.speaker-card {
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    min-width: 220px;
    backdrop-filter: blur(10px);
}

.speaker-brought-by {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.speaker-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: center;
}

.speaker-name br {
    display: block;
    margin: 4px 0;
}

.speaker-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-style: italic;
}

.speaker-divider {
    border: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    margin: 16px 0;
}

.speaker-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 14px;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-color: var(--sunset-gold);
    color: var(--navy-luxury);
    transform: translateY(-2px);
}

/* Next Section */
.next-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.95) 0%, rgba(15, 37, 55, 0.95) 100%),
                url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.next-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1475721027785-f74eccf877e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.15;
    filter: blur(2px);
}

.next-section-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.next-section-main {
    color: var(--white);
}

.next-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.next-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
}

.next-section-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
}

.next-location-icon {
    color: var(--gold);
    font-size: 18px;
}

.next-section-location i {
    font-size: 18px;
}

.next-section-highlights {
    margin-bottom: 40px;
}

.next-highlights-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.next-highlights-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.next-highlights-list li {
    color: var(--white);
    font-size: 16px;
    position: relative;
    padding-left: 0;
}

.next-highlights-list li:not(:last-child)::after {
    content: '.';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.next-section-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.next-cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-cta-button-primary i {
    font-size: 16px;
}

.next-cta-button-primary:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.next-cta-button-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--white);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-cta-button-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.next-speaker-profile {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.next-speaker-image-wrapper {
    position: relative;
    width: 280px;
    height: 350px;
}

.next-speaker-image-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 1;
}

.next-speaker-image {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    clip-path: circle(50% at 50% 40%);
}

.next-speaker-card {
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    min-width: 220px;
    backdrop-filter: blur(10px);
}

.next-speaker-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.next-speaker-title {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 16px;
}

.next-speaker-divider {
    border: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    margin: 16px 0;
}

.next-speaker-social {
    display: flex;
    gap: 12px;
}

.next-social-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.next-social-icon i {
    font-size: 14px;
}

.next-social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    background: var(--primary-blue);
    padding: 100px 0;
    position: relative;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column - Image */
.about-image-column {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button-overlay:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay i {
    color: var(--primary-blue);
    font-size: 24px;
    margin-left: 4px;
}

.join-us-box {
    position: absolute;
    bottom: -130px;
    right: 30px;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-teal) 100%);
    border-radius: 12px;
    padding: 24px;
    max-width: 280px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(13, 74, 90, 0.4);
    border: 1px solid rgba(26, 143, 160, 0.3);
}

.join-us-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.join-us-icon i {
    color: var(--primary-blue);
    font-size: 20px;
}

.join-us-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.join-us-text {
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Right Column - Text */
.about-text-column {
    color: var(--white);
}

.about-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ocean-teal);
    margin-bottom: 16px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.3;
}

.about-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0.95;
}

.about-closing {
    font-size: 18px;
    line-height: 1.9;
    color: var(--white);
    margin-top: 32px;
    opacity: 0.95;
    font-weight: 500;
}

.about-closing-italic {
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 24px;
}

.about-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 24px 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

.feature-check {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 50%, var(--ocean-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    flex-shrink: 0;
}

/* Who Should Attend Section */
.who-should-attend-section {
    background: linear-gradient(180deg, var(--yacht-white) 0%, var(--beach-sand) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.who-should-attend-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 143, 160, 0.4) 50%, transparent 100%);
}

.who-should-attend-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.who-should-attend-header {
    text-align: center;
    margin-bottom: 80px;
}

.who-should-attend-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
}

.who-should-attend-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.audience-card-full {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-gold) 0%, var(--ocean-teal) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(13, 74, 90, 0.15);
    border-color: rgba(26, 143, 160, 0.3);
}

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

.audience-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 36px;
    color: var(--navy-luxury);
    box-shadow: 0 8px 24px rgba(255, 217, 61, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.audience-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--ocean-teal) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(255, 217, 61, 0.5);
}

.audience-card:hover .audience-icon::after {
    opacity: 0.2;
}

.audience-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.audience-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* What to Expect Section */
.what-to-expect-section {
    background: linear-gradient(180deg, var(--navy-luxury) 0%, var(--ocean-deep) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.what-to-expect-section::after {
    content: "";
    width: 100%;
    height: 131px;
    position: absolute;
    bottom: -0.3%;
    left: 0;
    background-size: auto;
    background-repeat: repeat no-repeat;
    background-position: 20vw bottom;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 134' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 98L50 92C100 86 200 74 300 50C400 26 500 -10 600 2C700 14 800 74 900 98C1000 122 1100 110 1150 104L1200 98V134H1150C1100 134 1000 134 900 134C800 134 700 134 600 134C500 134 400 134 300 134C200 134 100 134 50 134H0V98Z' fill='%23F9F9F8'/></svg>");
    z-index: 0;
}

.what-to-expect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(44, 155, 196, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.what-to-expect-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.what-to-expect-header {
    text-align: center;
    margin-bottom: 50px;
}

.what-to-expect-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sunset-gold);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 217, 61, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(255, 217, 61, 0.4);
}

.what-to-expect-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

.expect-card {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--navy-luxury) 100%);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(64, 224, 208, 0.15);
    position: relative;
    overflow: hidden;
}

.expect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset-gold) 0%, var(--tropical-turquoise) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.expect-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13, 74, 90, 0.5);
    border-color: rgba(64, 224, 208, 0.4);
    background: linear-gradient(135deg, #0F5A6E 0%, #0B3D4A 100%);
}

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

.expect-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--navy-luxury);
    box-shadow: 0 8px 20px rgba(255, 217, 61, 0.35);
    transition: all 0.4s ease;
}

.expect-card:hover .expect-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(255, 217, 61, 0.5);
}

.expect-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.expect-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.expect-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expect-list li {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85) !important;
    padding-left: 24px;
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.expect-list li::before {
    content: '→';
    color: var(--sunset-gold);
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.expect-card:hover .expect-list li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 32px;
}

.expect-card:hover .expect-list li::before {
    transform: translateX(4px);
}

/* Why Puerto Rico Section */
.why-pr-section {
    background: linear-gradient(180deg, var(--yacht-white) 0%, var(--beach-sand) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Agenda Section */
.agenda-section {
    background: var(--primary-blue);
    padding: 100px 0;
    position: relative;
}

.agenda-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.agenda-header {
    text-align: center;
    margin-bottom: 60px;
}

.agenda-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sunset-gold);
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 217, 61, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.agenda-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.agenda-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.agenda-day-group {
    margin-bottom: 32px;
}

.agenda-day-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(26, 143, 160, 0.3);
}

.agenda-day-date-text {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agenda-day-separator {
    color: rgba(255, 255, 255, 0.6);
}

.agenda-day-title-text {
    color: var(--white);
}

.agenda-events-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agenda-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    align-items: start;
}

.agenda-time-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.agenda-time-column-header {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
}

.agenda-morning-column .agenda-time-column-header {
    color: var(--sunset-gold);
    background: rgba(255, 217, 61, 0.15);
}

.agenda-afternoon-column .agenda-time-column-header {
    color: var(--white);
    background: rgba(255, 107, 107, 0.3);
}

.agenda-time-column-events {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agenda-event-card {
    background: linear-gradient(135deg, rgba(11, 27, 46, 0.95) 0%, rgba(13, 74, 90, 0.92) 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    border: 1px solid rgba(26, 143, 160, 0.2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.agenda-event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(26, 143, 160, 0.4);
}

.agenda-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    flex-shrink: 0;
}

.agenda-event-day-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.agenda-event-day-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--sunset-gold);
    line-height: 1;
}

.agenda-event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agenda-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.agenda-event-time,
.agenda-event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.agenda-event-time i,
.agenda-event-location i {
    color: var(--ocean-teal);
    font-size: 14px;
}

.agenda-event-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
}

.agenda-event-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 4px;
}


.why-pr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.why-pr-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-pr-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ocean-teal);
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 143, 160, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.why-pr-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.why-pr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-pr-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 280px;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    background: transparent;
}

.why-pr-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s ease;
    z-index: 0;
}

.why-pr-image-wrapper:hover .why-pr-image {
    transform: scale(1.05);
}

.why-pr-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-pr-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
}

/* How to Start Section */
.how-to-start-section {
    background: var(--primary-blue);
    padding: 100px 0;
    position: relative;
}

.how-to-start-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.how-to-start-header {
    text-align: center;
    margin-bottom: 64px;
}

.how-to-start-badge {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.how-to-start-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--dark-blue);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    position: absolute;
    top: -24px;
    left: 40px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    margin-top: 16px;
}

.step-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-list li {
    display: flex;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.step-bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Brands Carousel Section */
.brands-section {
    background: var(--primary-blue);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 143, 160, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.brands-header {
    text-align: center;
    margin-bottom: 40px;
}

.brands-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.brands-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: fit-content;
    margin-top: 90px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 180px;
    height: 100px;
    padding: 20px;
}

.brand-image {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.4);
    transition: all 0.4s ease;
    /* Ensure black elements/text become white */
    background: transparent;
}

.brand-logo img[src*="nomyx"] {
    max-height: 50px;
}

.brand-logo:hover .brand-image {
    filter: brightness(1) invert(0) opacity(1);
    transform: scale(1.05);
}

/* Old Logo Icon Styles - No longer used */
.brand-icon-1::before {
    content: '';
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    box-shadow: 
        -15px -15px 0 0 rgba(255, 255, 255, 0.2),
        15px -15px 0 0 rgba(255, 255, 255, 0.2),
        -15px 15px 0 0 rgba(255, 255, 255, 0.2),
        15px 15px 0 0 rgba(255, 255, 255, 0.2);
}

.brand-icon-2::before {
    content: '';
    width: 50px;
    height: 50px;
    border-left: 8px solid rgba(255, 255, 255, 0.6);
    border-right: 8px solid rgba(255, 255, 255, 0.6);
    transform: rotate(-45deg);
    position: absolute;
}

.brand-icon-2::after {
    content: '';
    width: 50px;
    height: 50px;
    border-left: 8px solid rgba(255, 255, 255, 0.4);
    border-right: 8px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    position: absolute;
}

.brand-icon-3::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid rgba(255, 255, 255, 0.6);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
}

.brand-icon-3::after {
    content: '';
    width: 20px;
    height: 40px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 25%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 100%);
    position: absolute;
    left: -10px;
    clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
}

.brand-icon-4::before {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 20px;
    box-shadow: 
        30px 0 0 rgba(255, 255, 255, 0.5),
        15px 30px 0 rgba(255, 255, 255, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.3);
}

.brand-icon-4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: absolute;
    top: 25px;
    left: 10px;
    transform: rotate(45deg);
    box-shadow: 
        20px -20px 0 rgba(255, 255, 255, 0.3),
        -20px 20px 0 rgba(255, 255, 255, 0.3);
}

.brand-icon-5::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 10px;
    border-radius: 0 0 5px 5px;
}

.brand-icon-5::after {
    content: '';
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50% 50% 0 0;
    position: absolute;
    top: 20px;
    left: 10px;
}

.brand-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
}

.brand-text sup {
    font-size: 10px;
    vertical-align: super;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.brands-section:hover .brands-track {
    animation-play-state: paused;
}

/* CTA Hero Section */
.cta-hero-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
    overflow: hidden;
}

.cta-hero-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
    will-change: transform;
}

.cta-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    justify-content: flex-end;
}

.cta-hero-content {
    background: rgba(10, 26, 46, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 60px;
    max-width: 700px;
    width: 100%;
}

.cta-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 217, 61, 0.3);
}

.cta-hero-button i {
    font-size: 18px;
}

.cta-hero-button:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 217, 61, 0.5);
}

/* Registration Section */
.registration-section {
    background: var(--primary-blue);
    padding: 100px 0;
}

.registration-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Registration Form Card */
.registration-form-card {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--navy-luxury) 100%);
    border-radius: 16px;
    padding: 50px;
}

.registration-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-email {
    margin-bottom: 24px;
}

.contact-email a {
    font-size: 18px;
    color: var(--sunset-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--sunset-coral);
}


.registration-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-blue);
    color: var(--white);
    padding: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit-button:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Right Side: Vision & Ticket */
.registration-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vision-section {
    margin-bottom: 20px;
}

.vision-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF8C42;
    margin-bottom: 16px;
}

.vision-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.vision-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.ticket-value-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ticket-card {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--navy-luxury) 100%);
    border-radius: 16px;
    padding: 32px;
    max-width: 100%;
    width: 100%;
}

.ticket-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sunset-gold);
    background: rgba(255, 217, 61, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
}

.ticket-price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.ticket-price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.ticket-price-unit {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.ticket-rsvp-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0 24px;
    font-style: italic;
}

.ticket-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ticket-type {
    font-size: 16px;
    font-weight: 600;
    color: var(--sunset-gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-includes {
    margin-bottom: 24px;
}

.ticket-includes-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.ticket-includes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-includes-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ticket-check {
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.ticket-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.ticket-button:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.ticket-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.value-card {
    background: var(--dark-blue);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-bullet {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.value-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section 2 */
.cta-section-2 {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cta-section-2-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
    overflow: hidden;
}

.cta-section-2-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: blur(6px) brightness(0.3);
    transform: scale(1.05);
    will-change: transform;
}

.cta-section-2-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    justify-content: flex-start;
}

.cta-section-2-content {
    background: rgba(10, 26, 46, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 60px;
    max-width: 800px;
    width: 100%;
}

.cta-section-2-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-section-2-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-section-2-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section-2-button:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Statistics Section */
.stats-section {
    background: var(--primary-blue);
    padding: 80px 0;
    position: relative;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 143, 160, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: transparent;
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--primary-blue);
    padding: 100px 0;
}

.pricing-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
    align-items: start;
}

.pricing-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sunset-gold);
    display: inline-block;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.pricing-header-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-header-right p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--dark-blue);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card-featured {
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

/* Gold Card Badge Shimmer Effect */
.pricing-card-gold .pricing-card-badge {
    position: relative;
    overflow: hidden;
}

.pricing-card-gold .pricing-card-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(212, 175, 55, 0.4) 50%,
        transparent 70%
    );
    animation: goldShimmer 3s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes goldShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Platinum Card Badge Shimmer Effect */
.pricing-card-platinum .pricing-card-badge {
    position: relative;
    overflow: hidden;
}

.pricing-card-platinum .pricing-card-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(192, 192, 192, 0.5) 50%,
        transparent 70%
    );
    animation: platinumShimmer 3s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes platinumShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.pricing-card-ribbon {
    position: absolute;
    top: 8px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pricing-card-ribbon i {
    color: var(--primary-blue);
    font-size: 18px;
}

.pricing-card-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    width: fit-content;
    position: relative;
    z-index: 1;
}

/* Basic Ticket Badge - Blue */
.pricing-card-basic .pricing-card-badge {
    background: rgba(26, 143, 160, 0.2);
    border: 1px solid var(--ocean-teal);
    color: var(--ocean-teal);
}

/* Standard Ticket Badge - Teal */
.pricing-card-standard .pricing-card-badge {
    background: rgba(44, 155, 196, 0.2);
    border: 1px solid rgba(44, 155, 196, 0.8);
    color: rgba(44, 155, 196, 1);
}

/* Gold Ticket Badge - Gold */
.pricing-card-gold .pricing-card-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--sunset-gold);
    color: var(--sunset-gold);
    position: relative;
    overflow: hidden;
}

/* Platinum Ticket Badge - Silver/Platinum */
.pricing-card-platinum .pricing-card-badge {
    background: rgba(192, 192, 192, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.8);
    color: rgba(192, 192, 192, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.price-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.pricing-card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-card-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.3);
}

.pricing-card-button:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 217, 61, 0.5);
}

.pricing-card-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 14px;
}

.pricing-check {
    color: var(--sunset-gold);
    font-size: 14px;
    flex-shrink: 0;
}

/* Speakers Section */
.speakers-section {
    background: linear-gradient(180deg, var(--yacht-white) 0%, var(--beach-sand) 100%);
    padding: 100px 0;
}

.speakers-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.speakers-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 64px;
    align-items: start;
    text-align: center;
}

.speakers-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.speakers-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ocean-teal);
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 143, 160, 0.15);
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
}

.speakers-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.speakers-header-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: start;
    padding-top: 40px;
}

.speakers-header-right p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.speaker-card-featured {
    grid-column: span 2;
}

.speaker-card-daven {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.speaker-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: var(--yacht-white);
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid rgba(26, 143, 160, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset-gold) 0%, var(--ocean-teal) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 143, 160, 0.3);
}

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

.speaker-image-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 4px;
}

.speaker-image-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(26, 143, 160, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.4s ease;
}

.speaker-card:hover .speaker-image-bg-circle {
    transform: translate(-50%, -50%) scale(1.1);
}

.speaker-card-image {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--yacht-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.speaker-card-daven .speaker-card-image {
    object-position: center 10%;
}

.speaker-card:hover .speaker-card-image {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.speaker-placeholder {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--yacht-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(26, 143, 160, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.speaker-placeholder i {
    font-size: 64px;
    color: rgba(26, 143, 160, 0.4);
    transition: all 0.4s ease;
}

.speaker-card:hover .speaker-placeholder {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(26, 143, 160, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
}

.speaker-card:hover .speaker-placeholder i {
    color: rgba(26, 143, 160, 0.6);
}

.speaker-card-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 4px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.speaker-card:hover .speaker-card-social {
    opacity: 1;
}

.speaker-social-link {
    width: 40px;
    height: 40px;
    background: rgba(26, 143, 160, 0.08);
    border: 1.5px solid rgba(26, 143, 160, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-teal);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-social-link:hover {
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-color: var(--sunset-gold);
    color: var(--navy-luxury);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.speaker-card-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 4px;
    transition: color 0.3s ease;
}

.speaker-card:hover .speaker-card-name {
    color: var(--ocean-teal);
}

.speaker-card-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ocean-teal);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.speaker-card:hover .speaker-card-title {
    opacity: 1;
}

.speaker-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.7);
    margin-top: 12px;
    text-align: center;
}

/* Contact & Registration Section */
.contact-registration-section {
    background: var(--primary-blue);
    padding: 100px 0;
}

.contact-registration-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Panel - Contact Info */
.contact-info-panel {
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.contact-info-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-info-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.contact-info-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-info-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-box {
    background: var(--dark-blue);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 16px;
}

.contact-box:last-child {
    margin-bottom: 0;
}

.contact-box-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-box-icon i {
    color: var(--primary-blue);
    font-size: 24px;
}

.contact-box-content {
    flex: 1;
}

.contact-box-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.contact-box-phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box-phone:hover {
    color: var(--sunset-gold);
}

/* Right Panel - Registration Form */
.contact-form-panel {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-teal) 100%);
    border-radius: 16px;
    padding: 50px;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-form-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.contact-form-group input,
.contact-form-group textarea {
    padding: 14px 16px;
    background: rgba(15, 37, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: rgba(15, 37, 55, 0.8);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.3);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-form-submit:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* CTA Section 3 */
.cta-section-3 {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section-3-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
    overflow: hidden;
}

.cta-section-3-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: blur(6px) brightness(0.3);
    transform: scale(1.05);
    will-change: transform;
}

.cta-section-3-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.cta-section-3-content {
    background: linear-gradient(135deg, rgba(11, 27, 46, 0.95) 0%, rgba(13, 74, 90, 0.92) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    border: 2px solid rgba(26, 143, 160, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 217, 61, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.cta-section-3-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-gold) 0%, var(--ocean-teal) 100%);
}

.cta-section-3-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.cta-section-3-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset-gold) 0%, var(--ocean-teal) 100%);
    border-radius: 2px;
}

.cta-section-3-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 12px;
}

.cta-section-3-list {
    list-style: none;
    padding: 0;
    margin: 24px auto 28px;
    max-width: 600px;
    text-align: left;
}

.cta-section-3-list li {
    font-size: 15px;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.95;
    padding: 10px 16px;
    padding-left: 44px;
    position: relative;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--sunset-gold);
    transition: all 0.3s ease;
}

.cta-section-3-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-left-color: var(--ocean-teal);
}

.cta-section-3-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--sunset-gold);
    font-size: 14px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-section-3-closing {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 14px;
    font-weight: 500;
}

.cta-section-3-closing:last-of-type {
    margin-bottom: 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sunset-gold);
}

.cta-section-3-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 217, 61, 0.4),
                0 0 0 0 rgba(255, 217, 61, 0.4);
    position: relative;
    overflow: hidden;
}

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

.cta-section-3-button:hover::before {
    left: 100%;
}

.cta-section-3-button:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 217, 61, 0.6),
                0 0 0 4px rgba(255, 217, 61, 0.2);
}

.cta-section-3-button i {
    font-size: 15px;
}

/* FAQ Section */
.faq-section {
    background: var(--primary-blue);
    padding: 100px 0;
}

.faq-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Info */
.faq-info {
    color: var(--white);
}

.faq-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sunset-gold);
    margin-bottom: 16px;
    display: block;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.faq-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    margin: 0;
}

/* Right Side - Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-teal) 100%);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(26, 143, 160, 0.8) 0%, rgba(13, 74, 90, 0.9) 100%);
    border: 1px solid rgba(26, 143, 160, 0.5);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(11, 27, 46, 0.7);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 24px;
}

.faq-answer p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Small CTA Section */
.small-cta-section {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.small-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.small-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.3);
    transform: scale(1.1);
}

.small-cta-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.small-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.small-cta-left {
    color: var(--white);
}

.small-cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    border-radius: 50px;
    color: var(--sunset-coral);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.small-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.small-cta-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.small-cta-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.small-cta-form {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
}

.small-cta-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    min-width: 0;
}

.small-cta-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.small-cta-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: rgba(15, 37, 55, 0.8);
}

.small-cta-button,
.small-cta-button:link,
.small-cta-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
    white-space: nowrap;
    text-decoration: none;
    width: 100%;
    max-width: 400px;
}

.small-cta-button i {
    font-size: 18px;
}

.small-cta-button:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.6);
}

.small-cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 400px;
    text-align: right;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: transparent;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: transparent;
    display: block;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 300px;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-center .footer-title {
    text-align: center;
}

.footer-column-center .footer-links {
    align-items: center;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-align: left;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--sunset-gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--sunset-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--sunset-gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    color: var(--navy-luxury);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(255, 217, 61, 0.4),
                0 0 0 0 rgba(255, 217, 61, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--sunset-gold) 100%);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 217, 61, 0.6),
                0 0 0 4px rgba(255, 217, 61, 0.2);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* About Section 2 */
.about-section-2 {
    background: var(--primary-blue);
    padding: 100px 0;
    position: relative;
}

.about-content-2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Image */
.about-image-column-2 {
    position: relative;
}

.about-image-wrapper-2 {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-2 {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%);
    transition: transform 0.3s ease;
}

.about-image-2:hover {
    transform: scale(1.02);
}

.play-button-overlay-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button-overlay-2:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay-2 i {
    color: var(--gold);
    font-size: 24px;
    margin-left: 4px;
}

.join-us-box-2 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-teal) 100%);
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.join-us-icon-2 {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.join-us-icon-2 i {
    color: var(--primary-blue);
    font-size: 20px;
}

.join-us-content-2 {
    flex: 1;
}

.join-us-title-2 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.join-us-text-2 {
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Right Column - Text */
.about-text-column-2 {
    color: var(--white);
}

.about-badge-2 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    background: var(--gold);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

.about-title-2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-description-2 {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0.9;
}

.about-divider-2 {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 24px 0;
}

.about-features-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.features-column-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item-2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
}

.feature-check-2 {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .speaker-profile {
        justify-content: center;
        margin-top: 40px;
    }

    .next-section-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .next-speaker-profile {
        justify-content: center;
        margin-top: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-column {
        order: 2;
    }

    .about-text-column {
        order: 1;
    }

    .join-us-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .about-content-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-column-2 {
        order: 2;
    }

    .about-text-column-2 {
        order: 1;
    }

    .join-us-box-2 {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .step-card {
        padding: 48px 40px 40px;
    }

    .contact-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
    }

    .header-content {
        padding: 0 24px;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 999999 !important;
        position: relative;
        order: 2;
    }

    .mobile-menu-toggle.active,
    .nav.active ~ .mobile-menu-toggle {
        display: none !important;
    }

    .header-cta {
        display: none !important;
    }

    .nav {
        order: 3;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 0;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        visibility: visible;
    }

    .nav.active {
        right: 0;
    }

    .nav-close {
        display: flex;
        position: absolute;
        top: 24px;
        right: 24px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        color: var(--white);
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 20px;
        z-index: 1002;
    }

    .nav-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-image {
        margin-top: auto;
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -32px;
        margin-right: -32px;
        width: calc(100% + 64px);
    }

    .nav-image:first-of-type {
        margin-top: auto;
        margin-bottom: 0;
        padding-bottom: 16px;
    }

    .nav-image:last-of-type {
        margin-top: 0;
        padding-bottom: 0;
    }

    .nav-meta-img {
        max-width: 60%;
        height: auto;
        opacity: 0.9;
    }

    .nav-speakers-img {
        max-width: 100%;
        height: auto;
        opacity: 0.8;
    }

    .hero {
        padding: 170px 0 60px;
        min-height: 100vh;
        background-image: url('../images/mobile-hero.png');
        background-size: cover;
        background-position: center;
        align-items: flex-start;
    }

    .hero::after {
        height: 65.5px;
    }

    .hero-content {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 0;
    }

    .hero-date-badge {
        font-size: 10px;
        padding: 6px 16px;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }

    .hero-hosted {
        justify-content: center;
    }

    .hero-location {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-location-text {
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .hero-date,
    .hero-venue {
        display: block;
        text-align: center;
        width: 100%;
    }

    .spline-container {
        display: block;
    }

    .countdown {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 8px;
    }

    .countdown-item {
        flex: 1 1 0;
        min-width: 0;
        padding: 14px 8px;
        max-width: 80px;
    }

    .countdown-number {
        font-size: 22px;
    }

    .countdown-label {
        font-size: 9px;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cta-button-primary,
    .cta-button-secondary {
        flex: 1 1 auto;
        min-width: 0;
        padding: 10px 16px;
        font-size: 11px;
        text-align: center;
        justify-content: center;
    }

    .cta-button-primary .desktop-text {
        display: none;
    }

    .cta-button-primary .mobile-text {
        display: inline;
    }

    .cta-button-secondary.mobile-only {
        display: inline-flex;
    }

    /* Pricing Cards - Stack on mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Speakers Grid - Stack on mobile */
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .speaker-card {
        padding: 24px 16px;
        gap: 16px;
    }

    .speaker-image-container {
        width: 140px;
        height: 140px;
    }

    .speaker-image-bg-circle {
        width: 140px;
        height: 140px;
    }

    .speaker-card-image {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }

    .speaker-card-social {
        gap: 8px;
        margin-top: 8px;
    }

    .speaker-social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .speaker-card-name {
        font-size: 18px;
        margin-top: 8px;
    }

    .speaker-card-title {
        font-size: 12px;
    }

    .pricing-header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-header-right {
        padding-top: 0;
    }

    /* Stats - Stack on mobile */
    .stats-container {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    /* FAQ - Stack on mobile */
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* CTA Sections - Stack content */
    .cta-hero-content,
    .cta-section-2-content,
    .cta-section-3-content {
        text-align: center;
    }

    /* Contact sidebar hidden on mobile */
    .contact-sidebar {
        display: none;
    }
}

/* Rest of the page styles (keeping existing styles for other sections) */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.intro {
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.intro-content p {
    margin-bottom: 24px;
}

.intro-highlight {
    font-weight: 600;
    color: var(--primary-blue);
}

.who-attend {
    background: var(--light-blue);
}

.attendee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.attendee-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.attendee-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attendee-card-content {
    padding: 40px;
}

.attendee-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.attendee-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.expect {
    background: var(--white);
}

.expect-grid {
    display: grid;
    gap: 48px;
    margin-top: 48px;
}

.expect-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
}

.expect-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.expect-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.expect-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.expect-list {
    list-style: none;
    padding: 0;
}

.expect-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-dark);
}

.expect-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ocean-blue);
    font-weight: 600;
}

.why-pr {
    background: linear-gradient(135deg, var(--sand) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.why-pr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1507525421304-6f5e1e4e6e30?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.why-pr .container {
    position: relative;
    z-index: 1;
}

.why-pr-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.why-pr-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.why-pr-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-list {
    list-style: none;
    max-width: 600px;
    margin: 48px auto;
    text-align: left;
}

.cta-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 18px;
}

.cta-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
}

.cta-button-secondary-page {
    display: inline-block;
    padding: 18px 48px;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin-top: 32px;
}

.cta-button-secondary-page:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.footer-content {
    opacity: 0.8;
    font-size: 14px;
}

html {
    scroll-behavior: smooth;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .expect-item {
        grid-template-columns: 1fr;
    }

    .expect-number {
        margin-bottom: 16px;
    }

    .attendee-grid {
        grid-template-columns: 1fr;
    }

    .why-pr-images {
        grid-template-columns: 1fr;
    }

    .hero {
        background-attachment: scroll;
    }

    .next-section {
        padding: 100px 0 60px;
    }

    .next-section-content {
        padding: 0 24px;
    }

    .next-speaker-image-wrapper {
        width: 200px;
        height: 250px;
    }

    .next-speaker-image-bg {
        width: 200px;
        height: 200px;
    }

    .next-speaker-image {
        width: 200px;
        height: 250px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding: 0 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .play-button-overlay {
        width: 60px;
        height: 60px;
    }

    .play-button-overlay i {
        font-size: 18px;
    }

    .about-section-2 {
        padding: 60px 0;
    }

    .about-content-2 {
        padding: 0 24px;
    }

    .about-features-2 {
        grid-template-columns: 1fr;
    }

    .play-button-overlay-2 {
        width: 60px;
        height: 60px;
    }

    .play-button-overlay-2 i {
        font-size: 18px;
    }

    .how-to-start-section {
        padding: 60px 0;
    }

    .how-to-start-content {
        padding: 0 24px;
    }

    .how-to-start-header {
        margin-bottom: 40px;
    }

    .step-card {
        padding: 40px 24px 32px;
    }

    .step-number {
        left: 24px;
    }

    .brands-section {
        padding: 40px 0;
    }

    .brands-container {
        padding: 0 24px;
    }

    .brands-track {
        gap: 60px;
        margin-top: 20px;
    }

    .brand-logo {
        min-width: 120px;
        height: 70px;
        padding: 10px;
    }

    .brand-image {
        max-height: 40px;
    }
    
    .brand-logo img[src*="nomyx"] {
        max-height: 35px;
    }

    .cta-hero-section {
        min-height: 400px;
    }

    .cta-hero-overlay {
        padding: 60px 24px;
    }

    .cta-hero-content {
        padding: 40px;
        max-width: 100%;
    }

    .cta-hero-title {
        font-size: clamp(28px, 5vw, 40px);
    }

    .registration-section {
        padding: 60px 0;
    }

    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .registration-form-card {
        padding: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .ticket-value-cards {
        grid-template-columns: 1fr;
    }

    .cta-section-2 {
        min-height: 400px;
    }

    .cta-section-2-overlay {
        padding: 60px 24px;
    }

    .cta-section-2-content {
        padding: 40px;
        max-width: 100%;
    }

    .cta-section-2-title {
        font-size: clamp(28px, 5vw, 40px);
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-container {
        flex-direction: column;
        gap: 32px;
        padding: 0 24px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        border-left: none;
        border-top: 1px dashed rgba(255, 255, 255, 0.3);
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-content {
        padding: 0 24px;
    }

    .pricing-header {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .speakers-section {
        padding: 60px 0;
    }

    .speakers-content {
        padding: 0 24px;
    }

    .speakers-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .speakers-header-right {
        padding-top: 0;
    }

    .speakers-title {
        font-size: clamp(28px, 5vw, 36px);
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .speaker-card-featured {
        grid-column: span 1;
    }

    .speaker-card {
        padding: 20px 16px;
        gap: 14px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .speaker-image-container {
        width: 130px;
        height: 130px;
    }

    .speaker-image-bg-circle {
        width: 130px;
        height: 130px;
    }

    .speaker-card-image {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }
    
    .speaker-placeholder {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }
    
    .speaker-placeholder i {
        font-size: 44px;
    }

    .speaker-card-social {
        gap: 8px;
        margin-top: 6px;
    }

    .speaker-social-link {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .speaker-card-name {
        font-size: 17px;
        margin-top: 6px;
    }

    .speaker-card-title {
        font-size: 11px;
    }

    .contact-registration-section {
        padding: 60px 0;
    }

    .contact-registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .contact-form-panel {
        padding: 40px;
    }

    .cta-section-3 {
        min-height: 400px;
    }

    .cta-section-3-overlay {
        padding: 60px 24px;
    }

    .cta-section-3-content {
        padding: 40px;
        max-width: 100%;
    }

    .cta-section-3-title {
        font-size: clamp(28px, 5vw, 40px);
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .small-cta-section {
        min-height: 250px;
    }

    .small-cta-overlay {
        padding: 40px 24px;
    }

    .small-cta-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .small-cta-left {
        text-align: center;
    }

    .small-cta-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .small-cta-title {
        font-size: clamp(28px, 5vw, 36px);
        margin-bottom: 12px;
    }

    .small-cta-description {
        font-size: 15px;
        max-width: 100%;
        margin: 0 auto;
    }

    .small-cta-right {
        align-items: center;
    }

    .small-cta-button {
        width: 100%;
        max-width: 100%;
        padding: 16px 32px;
        font-size: 14px;
    }

    .small-cta-note {
        text-align: center;
        font-size: 12px;
        max-width: 100%;
    }

    .who-should-attend-section {
        padding: 60px 0;
    }

    .who-should-attend-content {
        padding: 0 24px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .what-to-expect-section {
        padding: 60px 0;
    }

    .what-to-expect-section::after {
        height: 65.5px;
    }

    .what-to-expect-content {
        padding: 0 24px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-pr-section {
        padding: 60px 0;
    }

    .why-pr-container {
        padding: 0 24px;
    }

    .agenda-section {
        padding: 60px 0;
    }

    .agenda-content {
        padding: 0 24px;
    }

    .agenda-event-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .agenda-event-date {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        min-width: auto;
    }

    .agenda-event-day-name {
        margin-bottom: 0;
    }

    .agenda-event-day-number {
        font-size: 24px;
    }

    .agenda-event-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .agenda-events-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .agenda-time-column-header {
        text-align: center;
    }

    .why-pr-header {
        margin-bottom: 40px;
    }

    .why-pr-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-pr-image-wrapper {
        min-height: 420px;
        height: 420px;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        padding: 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 24px 0;
    }

    .footer-legal {
        justify-content: center;
    }
}

.wave-divider {
    height: 100px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.wave-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C300,100 600,20 900,60 C1050,80 1125,40 1200,60 L1200,120 L0,120 Z" fill="white"/></svg>');
    background-size: cover;
}

/* Success Popup Notification */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.success-popup-content {
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.success-popup.show .success-popup-content {
    transform: scale(1) translateY(0);
}

.success-popup-icon {
    font-size: 64px;
    color: var(--sunset-gold);
    margin-bottom: 20px;
    animation: popIn 0.5s ease 0.2s both;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    animation: fadeInUp 0.5s ease 0.3s both;
}

.success-popup-message {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
    animation: fadeInUp 0.5s ease 0.4s both;
}

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

.success-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.success-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .success-popup-content {
        padding: 32px 24px;
        max-width: 90%;
    }

    .success-popup-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .success-popup-title {
        font-size: 24px;
    }

    .success-popup-message {
        font-size: 14px;
    }
}


