/* ============================================
   Boat & Sea Expo 2026 - Main Stylesheet
   ============================================ */

:root {
    --primary-color: #0066cc;
    --secondary-color: #003366;
    --accent-color: #0099ff;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --white-color: #ffffff;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-y: auto;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color);
    overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; line-height: 1.3; }
h3 { font-size: 1.75rem; line-height: 1.4; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: #ff5722;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 18px 50px;
    font-size: 1.25rem;
}

.cookies-bar .btn {
    padding: 5px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.logo-img-secondary {
    height: 34px;
    opacity: 0.9;
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    display: none;
}

.edit-mode-toggle {
    position: fixed;
    top: 0;
    left: 150px;
    z-index: 10000000;
}

.edit-section-link {
    margin: 0 8px 10px 0;
}

@media (min-width: 768px) {
    .logo-text {
        display: block;
    }
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-link.cta-link {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 5px;
    border-bottom: none;
}

.nav-link.cta-link:hover {
    background-color: var(--accent-color);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    display: block;
}

@media (max-width: 1024px) {
    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--white-color);
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: opacity 0.3s ease, max-height 0.3s ease;
        box-shadow: none;
        z-index: 999;
    }
    
    .navbar-menu.active {
        max-height: 500px;
        opacity: 1;
        box-shadow: var(--box-shadow);
    }
    
    .navbar-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .navbar-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 0;
        border-bottom: none;
        display: block;
    }
    
    .nav-link.cta-link {
        padding: 10px 20px;
        margin: 10px 20px;
        width: calc(100% - 40px);
        text-align: center;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-container {
        position: relative;
    }
}

/* ============================================
   HERO SECTION WITH SLIDER
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    z-index: 1;
    scroll-margin-top: 70px;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    animation: slideIn-anim 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes slideIn-anim {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.45), rgba(0, 51, 102, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white-color);
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background-color: var(--white-color);
    transform: scale(1.3);
}

.hero-slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

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

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

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */

.countdown-section {
    padding: 35px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section h2 {
    color: var(--white-color);
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.countdown-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-item {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: var(--transition);
}

.countdown-item:hover {
    background-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.countdown-message {
    font-size: 1.2rem;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-section .btn {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 35px 40px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.cta-section .lead {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.cta-card:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-10px);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.visitor-card .cta-icon {
    color: var(--primary-color);
}

.exhibitor-card .cta-icon {
    color: var(--accent-color);
}

.sponsor-card .cta-icon {
    color: var(--secondary-color);
}

.cta-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cta-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-info {
    text-align: center;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    font-weight: 600;
    color: var(--primary-color);
}

.visitor-details {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.visitor-details h3 {
    text-align: center;
    margin-bottom: 25px;
}

.visitor-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.visitor-info-card {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.visitor-info-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.visitor-info-card p {
    margin-bottom: 10px;
    color: #666;
}

.visitor-link {
    font-weight: 600;
}

@media (max-width: 768px) {
    .visitor-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   EVENT DESCRIPTION
   ============================================ */

.event-description {
    padding: 35px 40px;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

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

.section-header h2 {
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.feature-card:hover {
    background-color: #e8f2ff;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

.event-mission {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f0f7ff;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    line-height: 1.8;
}

/* ============================================
   PARTNERS CAROUSELS
   ============================================ */

.partners-section {
    padding: 35px 40px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.partners-carousel-block {
    margin-bottom: 35px;
}

.partners-carousel-block:last-child {
    margin-bottom: 0;
}

.partners-carousel-block h3 {
    margin-bottom: 18px;
    color: var(--secondary-color);
}

.partners-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
}

.partners-carousel::-webkit-scrollbar {
    display: none;
}

.partners-carousel.dragging {
    cursor: grabbing;
    user-select: none;
}

.partners-carousel.dragging .partner-card {
    pointer-events: none;
}

.partners-track {
    display: flex;
    gap: 20px;
    width: max-content;
    user-select: none;
}

.partner-card {
    flex: 0 0 auto;
    min-width: 0;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 22px 18px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.partner-card img {
    width: 100%;
    max-width: 180px;
    height: 135px;
    max-height: 100%;
    object-fit: contain;
    margin-bottom: 10px;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.partner-card span {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 2.8em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .partner-card {
        min-height: 190px;
        padding: 16px 12px;
    }

    .partner-card img {
        height: 120px;
        max-width: 160px;
    }
}

/* ============================================
   MODALS
   ============================================ */

.hotel-list {
    display: grid;
    gap: 12px;
}

.hotel-item {
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
}

.hotel-item h6 {
    margin-bottom: 6px;
    color: var(--primary-color);
}

.hotel-item p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   VENUE SECTION
   ============================================ */

.venue-section {
    padding: 35px 40px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.venue-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.venue-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

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

.venue-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.venue-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.venue-info ul {
    list-style: none;
}

.venue-info li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.venue-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.venue-info li strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .venue-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   QUALITY SECTION
   ============================================ */

.quality-section {
    padding: 35px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.quality-banner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quality-banner h2 {
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.quality-banner > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.stat p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    padding: 35px 40px;
    background-color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.event-dates {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.final-contact {
    font-size: 1.1rem;
    margin-top: 30px;
}

.final-contact a {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .final-buttons {
        flex-direction: column;
    }
    
    .btn-xl {
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 20px 20px;
    position: relative;
    z-index: 10;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white-color);
    transition: var(--transition);
    text-decoration: none;
}

.social-link i {
    color: var(--white-color);
}

.social-link:hover {
    background-color: #e6f2ff;
    transform: scale(1.1);
}

.social-link:hover i {
    color: var(--primary-color);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.final-cta-footer {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 20px !important;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        gap: 20px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

section {
    scroll-margin-top: 90px;
}

.section {
    padding: 35px 40px;
    position: relative;
}

.section::after,
.event-description::after,
.cta-section::after,
.partners-section::after,
.countdown-section::after,
.venue-section::after,
.quality-section::after,
.final-cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 130vw;
    margin-left: calc((130vw - 100%) / -2);
    height: 65px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,40 Q150,20 300,40 Q450,55 600,40 Q750,25 900,40 Q1050,50 1200,40 L1200,60 L0,60 Z" fill="%230099ff" opacity="0.7"/></svg>') no-repeat;
    background-size: 100% 65px;
    animation: wave 15s linear infinite;
    z-index: 10;
    pointer-events: none;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    position: relative;
}

/* ============================================
   PARALLAX SLIDESHOW BACKGROUND
   ============================================ */

.parallax-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.parallax-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    overflow: hidden;
}

.parallax-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.parallax-slide.active {
    opacity: 0.2;
}

.event-description,
.final-cta {
    position: relative;
    z-index: 10;
    background-color: transparent;
}

.event-description .container,
.final-cta .container {
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

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

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-light {
    background-color: var(--light-color);
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }

.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}
/* ============================================
   WAVE ANIMATIONS
   ============================================ */

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-25px) translateY(-8px);
    }
    50% {
        transform: translateX(-50px) translateY(0);
    }
    75% {
        transform: translateX(-25px) translateY(8px);
    }
}

@keyframes waveFloat {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.2);
    }
}

/* ============================================
   HOME MEDIA & NEWS GRID
   ============================================ */

.home-news-grid-wrap {
    margin-top: 20px;
}

.home-news-card {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 45, 92, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(0, 45, 92, 0.2);
}

.home-news-card-trigger {
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: left;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.home-news-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d8e9ff;
}

.home-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-news-card:hover .home-news-card-image img {
    transform: scale(1.06);
}

.home-news-card-body {
    padding: 18px 18px 22px;
}

.home-news-card-meta {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #4f6b8a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-news-card h4 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    line-height: 1.35;
    color: #0c2e4f;
}

.home-news-card p {
    margin-bottom: 14px;
    font-size: 0.96rem;
    line-height: 1.6;
    color: #365574;
}

.home-news-card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #0074d4;
}

.home-news-card-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 53, 91, 0.9);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
}

.home-news-card-edit:hover {
    color: #fff;
    background: rgba(0, 116, 212, 0.95);
}

/* ============================================
   MANUAL DOWNLOAD BUTTONS
   ============================================ */

.manual-downloads-wrap {
    margin: 30px 0 10px;
    text-align: center;
}

.manual-downloads-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.manual-downloads-buttons .btn {
    min-width: 300px;
    white-space: normal;
}

.manual-downloads-buttons .btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.25);
}

/* ============================================
   BLOG POST MODAL
   ============================================ */

.blog-post-modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(1, 20, 40, 0.35);
}

.blog-modal-close-floating {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    z-index: 30;
    color: #ffffff;
    background: rgba(2, 20, 38, 0.72);
    backdrop-filter: blur(5px);
}

.blog-modal-close-floating:hover {
    background: rgba(0, 116, 212, 0.92);
}

.blog-modal-hero {
    position: relative;
    min-height: 240px;
    background: #0b2c48;
}

.blog-modal-hero img {
    width: 100%;
    height: clamp(240px, 38vw, 430px);
    object-fit: cover;
    display: block;
}

.blog-modal-hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 30px 26px;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(8, 35, 58, 0) 0%, rgba(8, 35, 58, 0.92) 80%);
}

.blog-modal-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
    opacity: 0.95;
}

.blog-modal-sep {
    opacity: 0.65;
}

.blog-modal-hero-overlay h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 2.3rem);
    line-height: 1.2;
}

.blog-modal-main {
    padding: 28px 30px 30px;
}

.blog-modal-copy {
    color: #214162;
    line-height: 1.8;
    font-size: 1.03rem;
}

.blog-modal-copy h1,
.blog-modal-copy h2,
.blog-modal-copy h3,
.blog-modal-copy h4 {
    color: #0f355b;
}

.blog-modal-copy img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-modal-gallery-wrap {
    margin-top: 28px;
}

.blog-modal-gallery-wrap h4 {
    margin-bottom: 14px;
    color: #0f355b;
}

.blog-modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.blog-modal-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.blog-modal-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 110px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.blog-modal-gallery-item:hover img {
    transform: scale(1.05);
}

.blog-modal-nav {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.blog-modal-empty-state {
    padding: 52px 28px;
    text-align: center;
    color: #1f466d;
}

@media (max-width: 991px) {
    .blog-modal-main {
        padding: 22px;
    }

    .blog-modal-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .home-news-card-body {
        padding: 16px;
    }

    .home-news-card-edit {
        top: 8px;
        right: 8px;
        font-size: 0.72rem;
        padding: 5px 9px;
    }

    .manual-downloads-buttons .btn {
        min-width: 100%;
    }

    .blog-modal-close-floating {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .blog-modal-hero-overlay {
        padding: 24px 18px 18px;
    }

    .blog-modal-main {
        padding: 18px;
    }

    .blog-modal-gallery-grid {
        grid-template-columns: 1fr;
    }

    .blog-modal-nav {
        flex-direction: column;
    }

    .blog-modal-nav .btn {
        width: 100%;
    }
}