/* ===================================
   ComplyFest 2026 - Main Stylesheet
   =================================== */


/* Inter Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Agrandir Font */
@import url('https://api.fontshare.com/v2/css?f[]=agrandir@400,500,600,700&display=swap');

/* Bebas Neue - Bold Display Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-color: #320802;
    --primary-dark: #320802;

    /* Secondary Colors */
    --secondary-color: #E43227;
    /* Chili Red */
    --verdigris: #3CACA8;
    --asparagus: #5E9843;
    --brown: #944221;
    --black: #000000;
    --white: #FFFFFF;

    /* Accent */
    --accent-color: linear-gradient(135deg, #320802 0%, #E43227 50%, #944221 100%);
    ;

    /* Text Colors */
    --text-dark: #ffffff;
    --text-light: rgba(255, 255, 255, 0.7);

    /* Background Colors */
    --bg-light: #0d0d0e;
    --bg-white: #070708;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Status Colors */
    --success-color: #5E9843;
    /* Asparagus */
    --error-color: #E43227;
    /* Chili Red */
    --warning-color: #f4a21f;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Geist Mono', 'Courier New', monospace;
    --font-display: 'Bebas Neue', Impact, sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: #070708;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
}

/* ── Global Page Background Ambience ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        /* Subtle grid lines */
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        /* Soft edge gradients */
        radial-gradient(ellipse at 0% 0%, rgba(228, 50, 39, 0.045) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(148, 66, 33, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(60, 172, 168, 0.025) 0%, transparent 45%),
        radial-gradient(ellipse at 0% 100%, rgba(94, 152, 67, 0.025) 0%, transparent 45%);
    background-size:
        60px 60px,
        60px 60px,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
}

/* Faded watermark logo */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.015;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(100%);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navigation */
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    padding: 1.5rem 1rem;
    min-height: 80px;
    position: relative;
}

.navbar .container {
    background-color: rgba(187, 187, 187, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 12px 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .navbar .container {
    background-color: rgba(187, 187, 187, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar Logo Container */
.navbar-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    overflow: hidden;
}

.navbar-logo a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.navbar-logo img {
    height: 45px;
    width: 45px;
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
    display: block;
}

/* Navbar Theme Container */
.navbar-theme {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.2;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.theme-text {
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    text-align: center;
}

/* Navbar Divider */
.navbar-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Navbar Event Info Container */
.navbar-event-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.3;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.event-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.event-date sup {
    font-size: 0.6rem;
}

.event-venue,
.event-location {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
}

/* Keep old logo styles for fallback */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.3px;
    transition: var(--transition);
    font-family: 'Agrandir', -apple-system, BlinkMacSystemFont, sans-serif;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.nav-menu li:not(:last-child) a {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 0;
    transition: all 0.25s ease;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu li:not(:last-child) a i {
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.nav-menu li:not(:last-child) a:hover,
.nav-menu li:not(:last-child) a.active {
    opacity: 1;
    color: var(--secondary-color);
}

.nav-menu li:not(:last-child) a:hover i,
.nav-menu li:not(:last-child) a.active i {
    transform: scale(1.1);
}

/* ============================================
   DROPDOWN NAVIGATION - Desktop Only
   ============================================ */

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-arrow {
    font-size: 0.7rem !important;
    transition: transform 0.3s ease;
    opacity: 0.8;
    margin-left: 2px;
}

/* Desktop hover behaviour — Only above 1024px */
@media (min-width: 1025px) {

    /* Rotate arrow on hover */
    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Hover bridge — fills the gap so cursor can travel to the menu */
    .nav-dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 140%;
        height: 14px;
        /* covers the margin-top gap */
        background: transparent;
        z-index: 9998;
    }

    /* Remove the old decorative line */
    .nav-dropdown::after {
        display: none;
    }

    /* ── Professional dropdown panel ── */
    .dropdown-menu {
        position: absolute;
        top: calc(100% + 14px);
        /* sits 14 px below the link */
        left: 50%;
        transform: translateX(-50%) translateY(-6px);
        min-width: 220px;

        /* Dark glass */
        background: rgba(8, 8, 10, 0.88);
        backdrop-filter: blur(28px) saturate(180%);
        -webkit-backdrop-filter: blur(28px) saturate(180%);

        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.09);

        /* Layered shadow for depth */
        box-shadow:
            0 4px 6px rgba(0, 0, 0, 0.3),
            0 16px 48px rgba(0, 0, 0, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);

        padding: 8px;
        z-index: 9999;

        /* Hidden state */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        /* Smooth fade + lift transition */
        transition:
            opacity 0.22s ease,
            visibility 0.22s ease,
            transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Upward-pointing caret */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid rgba(8, 8, 10, 0.88);
        pointer-events: none;
    }

    /* Visible / active state */
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

/* Desktop dropdown link styles - Only above 1024px */
@media (min-width: 1025px) {
    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 16px;
        color: rgba(255, 255, 255, 0.88) !important;
        font-weight: 500;
        font-size: 0.875rem;
        transition: all 0.2s ease;
        border-radius: 10px;
        background: transparent;
        position: relative;
        white-space: nowrap;
    }

    .dropdown-menu li a i {
        color: var(--secondary-color);
        font-size: 0.8rem;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .dropdown-menu li a:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.08);
    }

    .dropdown-menu li a:hover i {
        transform: scale(1.2);
        color: var(--secondary-color);
    }
}

.btn-register {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff !important;
    padding: 11px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 12px rgba(244, 162, 31, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-register i {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-register::after {
    display: none !important;
}

.btn-register:hover {
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.3), rgba(244, 162, 31, 0.25));
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(244, 162, 31, 0.25);
    border-color: rgba(244, 162, 31, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 24px;
    gap: 12px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.nav-toggle .hamburger-icon span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 10px;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* background: linear-gradient(to top, rgba(228, 50, 39, 0.8) 0%, transparent 100%); */
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.hero-left {
    max-width: 100%;
    justify-self: start;
    flex-shrink: 0;
    margin-bottom: 0;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-self: start;
    max-width: 100%;
}

/* Meta Badges */
.hero-meta {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
    margin-bottom: 20px;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px 9px 12px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #fafafa;
    letter-spacing: -0.02em;
    line-height: 1.4;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-icon {
    font-size: 20px;
    color: #fafafa;
    flex-shrink: 0;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 2vw, 3.5rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    font-family: var(--font-secondary);
    margin-bottom: 0;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
    color: #fafafa;
    line-height: 1.65;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    opacity: 0.9;
    max-width: 100%;
    text-align: justify;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

/* CTA Buttons Container */
.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* CTA Button */
.hero-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 50px;
}

.hero-cta-btn i {
    font-size: 18px;
    color: #ffffff;
    z-index: 2;
}

.cta-main,
.cta-duplicate {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0;
    white-space: nowrap;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.cta-duplicate {
    position: absolute;
    left: 46px;
    transform: translateY(50px);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 162, 31, 0.4);
}

.hero-cta-btn:hover .cta-main {
    transform: translateY(-50px);
}

.hero-cta-btn:hover .cta-duplicate {
    transform: translateY(0);
}

/* Button Primary Style */
.hero-cta-btn.btn-primary-style {
    background-color: transparent;
    border: 2px solid var(--white);
}

.hero-cta-btn.btn-primary-style i,
.hero-cta-btn.btn-primary-style .cta-main,
.hero-cta-btn.btn-primary-style .cta-duplicate {
    color: #ffffff;
}

.hero-cta-btn.btn-primary-style:hover {
    box-shadow: 0 8px 24px rgba(244, 162, 31, 0.4);
}

/* Button White Style */
.hero-cta-btn.btn-white-style {
    background-color: var(--white);
}

.hero-cta-btn.btn-white-style i,
.hero-cta-btn.btn-white-style .cta-main,
.hero-cta-btn.btn-white-style .cta-duplicate {
    color: var(--primary-color);
}

.hero-cta-btn.btn-white-style:hover {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    background-color: #f8f8f8;
}

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

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

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(228, 50, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(94, 152, 67, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(60, 172, 168, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 260px;
    gap: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 400;
    background: linear-gradient(135deg, #320802 0%, #E43227 50%, #944221 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-description p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #292524;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.stat-note {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    color: #78716c !important;
    font-weight: 400 !important;
    text-transform: none !important;
}

/* Sections */
section {
    padding: 0 0 30px 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Event Info & About Section */
.event-about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.event-info-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.event-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d0d0e;
    letter-spacing: -0.02em;
    font-family: var(--font-secondary);
}

.event-theme {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.event-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-detail-item i {
    font-size: 1.2rem;
    color: #E43227;
}

.event-detail-item:hover {
    background: rgba(244, 162, 31, 0.08);
    border-color: rgba(244, 162, 31, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 162, 31, 0.2);
}

/* About Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 162, 31, 0.5);
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.05), rgba(244, 162, 31, 0.02));
    box-shadow: 0 15px 40px rgba(244, 162, 31, 0.25);
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 162, 31, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.3), rgba(244, 162, 31, 0.15));
    transform: scale(1.1) rotate(-5deg);
}

.stat-icon i {
    font-size: 32px;
    color: #f4a21f;
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d0d0e;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.stat-content p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

/* Breakout Tracks Section */
.tracks-section {
    background-color: #070708;
    padding: 100px 0;
    position: relative;
}

.tracks-section .container {
    overflow: hidden;
}

.tracks-marquee {
    display: flex;
    align-items: stretch;
    gap: 30px;
    width: max-content;
    margin-top: 50px;
    animation: tracksMarqueeScroll 30s linear infinite;
    will-change: transform;
}

.tracks-section .tracks-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    margin: 0;
    width: max-content;
    flex-shrink: 0;
}

.tracks-section .track-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid #E4322730;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    aspect-ratio: auto;
    min-height: 220px;
    flex: 0 0 clamp(240px, 24vw, 320px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@keyframes tracksMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 30px));
    }
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.1) 0%, rgba(244, 162, 31, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.track-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 162, 31, 0.3);
    box-shadow: 0 15px 40px rgba(244, 162, 31, 0.2);
}

.track-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.track-card:hover .track-icon {
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.3), rgba(244, 162, 31, 0.15));
    transform: scale(1.1) rotate(5deg);
}

.track-icon i {
    font-size: 28px;
    color: #E43227;
    transition: all 0.4s ease;
}

.track-card:hover .track-icon i {
    transform: scale(1.1);
    color: #ffffff;
}

.track-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

/* Session Focus Section */
.session-focus-section {
    padding: 100px 0;
    position: relative;
}

.session-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.focus-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 162, 31, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.focus-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 162, 31, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(244, 162, 31, 0.2);
}

.focus-bg-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.08;
    transition: all 0.4s ease;
}

.focus-card:hover .focus-bg-icon {
    opacity: 0.15;
    transform: rotate(15deg) scale(1.1);
}

.focus-bg-icon i {
    font-size: 80px;
    color: var(--accent-color);
}

.focus-content {
    position: relative;
    z-index: 1;
}

.focus-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.focus-card:hover .focus-content h3 {
    color: var(--accent-color);
}

.focus-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Why Attend & Who Attends Combined Section */
.attend-sections {
    padding: 100px 0;
    position: relative;
}

.attend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.attend-card {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.attend-image {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.attend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.attend-card:hover .attend-image img {
    transform: scale(1.05);
}

.attend-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.attend-content {
    padding: 40px 0 0 0;
    background-color: transparent;
}

.attend-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.attend-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateX(5px);
}

.btn-learn-more i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(3px);
}

/* Legacy Why Attend Section Styles (kept for compatibility) */
.why-attend-section {
    background-color: #0d0d0e;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.why-attend-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.why-attend-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-attend-text .highlight-text {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 35px;
    line-height: 1.6;
}

.why-attend-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #ffffff;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.btn-attend {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color), #d89419);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(244, 162, 31, 0.3);
}

.btn-attend:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 162, 31, 0.4);
}

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

.btn-attend:hover i {
    transform: translateX(5px);
}

.why-attend-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.why-attend-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-attend-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.2), rgba(50, 8, 2, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-attend-image:hover .image-overlay {
    opacity: 1;
}

/* Who Attends Section */
.who-attends-section {
    background-color: #070708;
    padding: 100px 0;
    position: relative;
}

.who-attends-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.who-attends-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.who-attends-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.who-attends-image:hover img {
    transform: scale(1.05);
}

.attendees-wrapper {
    flex: 1;
}

.attendees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.attendee-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.attendee-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 162, 31, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    box-shadow: 0 10px 30px rgba(244, 162, 31, 0.15);
}

.attendee-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 162, 31, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.attendee-card:hover .attendee-icon {
    background: rgba(244, 162, 31, 0.2);
    transform: scale(1.1);
}

.attendee-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.attendee-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.media-passes-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.media-badge {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px 45px;
    max-width: 700px;
    transition: all 0.4s ease;
}

.media-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.media-badge>i {
    font-size: 50px;
    color: var(--white);
    flex-shrink: 0;
}

.media-content {
    flex: 1;
}

.media-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.media-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-media {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-media:hover {
    transform: translateX(5px);
}

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

.btn-media:hover i {
    transform: translateX(5px);
}

/* Previous COMPLYFEST Gallery Section */
.previous-complyfest-section {
    background: linear-gradient(180deg, #0d0d0e 0%, #070708 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gallery-carousel {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0;
    padding: 0 60px;
    box-sizing: border-box;
}

.carousel-container {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.gallery-slide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    position: relative;
    height: 600px;
    min-height: 400px;
    max-height: 600px;
    opacity: 0;
    transition: opacity 0.6s ease;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

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

.gallery-slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 60px 50px 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-slide.active .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-caption h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.slide-caption p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(244, 162, 31, 0.9);
    border-color: rgba(244, 162, 31, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(244, 162, 31, 0.4);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f4a21f, #d89419);
    box-shadow: 0 4px 15px rgba(244, 162, 31, 0.4);
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.gallery-stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(244, 162, 31, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 162, 31, 0.2);
}

.gallery-stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f4a21f;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    font-family: var(--font-secondary);
}

.gallery-stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Conference Overview Section */
.conference-overview-section {
    background: linear-gradient(180deg, #0d0d0e 0%, #070708 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.conference-overview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(71, 177, 181, 0.1), transparent 34%),
        radial-gradient(circle at bottom left, rgba(157, 77, 37, 0.12), transparent 32%);
    pointer-events: none;
}

.conference-overview-main-header {
    position: relative;
    z-index: 1;
    margin-bottom: 34px;
}

.conference-overview-box {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.conference-overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.conference-overview-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.32));
}

.conference-overview-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.conference-overview-lead {
    font-size: 1.16rem;
    color: #ffffff;
}

.conference-overview-content p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
}


/* Media Coverage Section */
.media-coverage-section {
    background: #000000;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.media-coverage-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%) rotate(-15deg);
    width: 50%;
    max-width: 500px;
    height: 70%;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    opacity: 0.08;
    z-index: 0;
    filter: blur(1px);
}

.media-coverage-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(50, 8, 2, 0.3) 0%, rgba(228, 50, 39, 0.15) 25%, transparent 50%),
        linear-gradient(to left, rgba(50, 8, 2, 0.3) 0%, rgba(228, 50, 39, 0.15) 25%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Particle Effects */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(228, 50, 39, 0.6), rgba(148, 66, 33, 0.3), transparent);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-particle linear infinite;
}

.particle.glow {
    background: radial-gradient(circle, rgba(244, 162, 31, 0.8), rgba(228, 50, 39, 0.4), transparent);
    box-shadow: 0 0 20px rgba(244, 162, 31, 0.6);
}

.particle.small {
    width: 4px;
    height: 4px;
}

.particle.medium {
    width: 8px;
    height: 8px;
}

.particle.large {
    width: 12px;
    height: 12px;
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.media-coverage-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.media-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white), white);
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(244, 162, 31, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.media-icon-large i {
    font-size: 50px;
    color: var(--primary-color);
}

.media-coverage-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.media-coverage-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-media-pass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-media-pass:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    background: var(--accent-color);
    color: #ffffff;
}

.btn-media-pass i {
    transition: transform 0.3s ease;
}

.btn-media-pass:hover i {
    transform: translateX(5px);
}

/* 2025 Sponsors & Partners Section */
.sponsors-section {
    padding: 100px 0;
    position: relative;
}

/* Headline Sponsor Section */
.headline-sponsor {
    margin: 60px auto 80px;
    text-align: center;
    max-width: 800px;
}

.sponsor-tier-title {
    font-size: 1.5rem;
    color: #E43227;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.headline-sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(228, 50, 39, 0.3);
    border-radius: 24px;
    padding: 40px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.headline-sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 50, 39, 0.1), transparent);
    transition: left 0.6s ease;
}

.headline-sponsor-card:hover::before {
    left: 100%;
}

.headline-sponsor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(228, 50, 39, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(228, 50, 39, 0.3);
}

.headline-sponsor-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.headline-sponsor-card:hover img {
    transform: scale(1.08);
}

.headline-sponsor-card.white-overlay img {
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.9;
}

.headline-sponsor-card.white-overlay:hover img {
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 1;
}

/* Other Sponsors Section */
.other-sponsors {
    margin-top: 60px;
}

.sponsors-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 14px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.sponsors-marquee::before,
.sponsors-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    pointer-events: none;
    z-index: 2;
}

.sponsors-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(10, 10, 11, 1) 0%, rgba(10, 10, 11, 0) 100%);
}

.sponsors-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(10, 10, 11, 1) 0%, rgba(10, 10, 11, 0) 100%);
}

.sponsors-marquee-track {
    display: flex;
    width: max-content;
    animation: sponsorsMarqueeScroll 34s linear infinite;
    will-change: transform;
}

.sponsors-marquee-group {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.sponsor-logo-card--marquee {
    width: 220px;
    max-width: 220px;
    flex: 0 0 auto;
    height: 140px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.08);
}

.sponsor-logo-card--marquee img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes sponsorsMarqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.sponsors-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-logo-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.sponsor-logo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 162, 31, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(244, 162, 31, 0.15);
}


.sponsor-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}

.sponsor-logo-card:hover img {
    transform: scale(1.05);
}

/* White overlay for specific sponsors like RegFi */
.sponsor-logo-card.white-overlay img {
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.7;
}

.sponsor-logo-card.white-overlay:hover img {
    filter: grayscale(0%) brightness(1) invert(0);
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.1), rgba(244, 162, 31, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(244, 162, 31, 0.2);
}

.sponsor-cta h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.sponsor-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-sponsor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--accent-color);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: #E43227;
}

.btn-sponsor:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 162, 31, 0.5);
}

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

.btn-sponsor:hover i {
    transform: translateX(5px);
}

/* Ticketing Section */
.ticketing-section {
    padding: 100px 0;
    position: relative;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ticket-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticket-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 162, 31, 0.4);
    box-shadow: 0 20px 50px rgba(244, 162, 31, 0.2);
}

.ticket-card.featured {
    border-color: rgba(244, 162, 31, 0.5);
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.08), rgba(244, 162, 31, 0.03));
}

.ticket-card.premium {
    border-color: rgba(244, 162, 31, 0.6);
    background: linear-gradient(135deg, rgba(244, 162, 31, 0.12), rgba(244, 162, 31, 0.05));
}

.ticket-card.virtual {
    border-color: rgba(60, 172, 168, 0.4);
    background: linear-gradient(135deg, rgba(60, 172, 168, 0.08), rgba(60, 172, 168, 0.03));
}

.ticket-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-badge.virtual-badge {
    background: var(--verdigris);
}

/* ============================================
   Speakers Section
============================================ */
.speakers-section {
    padding: 60px 0;
    background-color: #070708;
    position: relative;
}

.speakers-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.speakers-section .section-subtitle {
    font-family: 'Geist Mono', monospace;
    font-size: 4.5rem;
    font-weight: 400;
    color: #fafafa;
    letter-spacing: -0.28px;
    line-height: 1.4;
    text-transform: uppercase;
}

.speakers-heading {
    font-family: 'Geist', sans-serif;
    font-size: 2.375rem;
    font-weight: 700;
    letter-spacing: -0.76px;
    line-height: 1;
    margin-bottom: 24px;
    text-align: center;
}

.speakers-heading .heading-line {
    display: block;
}

.speakers-heading .text-primary {
    color: #fafafa;
}

.speakers-heading .text-secondary {
    color: #999999;
}

.speakers-section .section-description {
    font-family: 'Geist Mono', monospace;
    font-size: 1rem;
    font-weight: 400;
    color: #999999;
    letter-spacing: -0.32px;
    line-height: 1.4;
    text-align: center;
}

.speakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.speaker-card {
    background-color: #171717;
    border-radius: 12px;
    overflow: hidden;
    padding: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 162, 31, 0.15);
}

.speaker-image-wrapper {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.speaker-card:hover .speaker-image {
    transform: scale(1.05);
}

.speaker-content {
    padding: 20px;
}

.speaker-info {
    margin-bottom: 16px;
}

.speaker-name {
    font-family: 'Geist Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.6px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.speaker-title {
    font-family: 'Geist Mono', monospace;
    font-size: 0.875rem;
    font-weight: 400;
    color: #999999;
    letter-spacing: 0;
    line-height: 1.4;
}

.speaker-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.speaker-socials .social-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    color: #999999;
    font-size: 0.875rem;
}

.speaker-socials .social-link:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.ticket-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.ticket-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.original-price {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
}

.ticket-type {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.ticket-opens {
    display: inline-block;
    background: rgba(244, 162, 31, 0.15);
    color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ticket-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.ticket-note.limited {
    color: var(--secondary-color);
    font-weight: 600;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.ticket-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.ticket-card.virtual .ticket-features i {
    color: var(--verdigris);
}

.btn-ticket {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent-color);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: none;
}

.btn-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 162, 31, 0.4);
}

.btn-ticket.btn-waitlist {
    background: linear-gradient(135deg, var(--verdigris), #32988f);
}

.btn-ticket.btn-waitlist:hover {
    box-shadow: 0 10px 30px rgba(60, 172, 168, 0.4);
}

/* About Section */
.about-section {
    background-color: #070708;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.about-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card h3 {
    margin-bottom: 0.5rem;
    color: white;
}

/* Speakers Section */
.speakers-section {
    background-color: #070708;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.speaker-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.speaker-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.speaker-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.05);
}

.speaker-info {
    padding: 1.5rem;
}

.speaker-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: white;
}

.speaker-info .position {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

/* Newsletter Section */


.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto 30px;
    flex-wrap: wrap;
}

.btn-newsletter {
    background: var(--accent-color);
    color: #ffffff;
    padding: 16px 45px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-newsletter:hover::before {
    left: 100%;
}

.btn-newsletter:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(244, 162, 31, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-newsletter i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.btn-newsletter:hover i {
    transform: translateX(6px) rotate(15deg);
}



#newsletterMessage {
    margin-top: 20px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

#newsletterMessage.success {
    background-color: rgba(255, 255, 255, 0.95);
    color: #16a34a;
    border: 2px solid #16a34a;
}

#newsletterMessage.error {
    background-color: rgba(255, 255, 255, 0.95);
    color: #dc2626;
    border: 2px solid #dc2626;
}

.newsletter-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 30px;
    padding: 20px;
    background: rgba(244, 162, 31, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(244, 162, 31, 0.2);
    backdrop-filter: blur(10px);
}

.newsletter-trust i {
    font-size: 1.2rem;
    color: #f4a21f;
}

@keyframes float {

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

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

/* Footer Top Sections (Newsletter and Contact) */
.footer-top-sections {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

.footer-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 80px 0;
    position: relative;
    background: transparent;
    border-top: none;
    border-bottom: none;
    overflow: hidden;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 50, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.newsletter-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    background: #3f3f3f;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(244, 162, 31, 0.2);
    animation: float 3s ease-in-out infinite;
}

.newsletter-icon i {
    font-size: 3rem;
    color: white;
}

.newsletter-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 25px rgba(244, 162, 31, 0.2);
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    line-height: 1.8;
    font-weight: 300;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(244, 162, 31, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(244, 162, 31, 0.3);
}

.contact-icon i {
    font-size: 2.5rem;
    color: #e43227;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.contact-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 30px auto 25px;
    flex-wrap: wrap;
}

.btn-contact {
    padding: 18px 40px;
    background: linear-gradient(135deg, #e43227 0%, #d1281f 100%);
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(228, 50, 39, 0.3);
    white-space: nowrap;
    text-decoration: none;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #d1281f 0%, #b8221a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 50, 39, 0.4);
}

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

.btn-contact:hover i {
    transform: translateX(5px);
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 1.2rem;
    color: #f4a21f;
    min-width: 20px;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #070708 0%, #0d0d0e 50%, #070708 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    text-align: center;
    padding: 100px 0 60px;
    padding-top: 150px;
    margin-top: 80px;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header h1 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Enhancements */
.form-group.focused label {
    color: var(--secondary-color);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset;
    -webkit-text-fill-color: white;
    transition: background-color 5000s ease-in-out 0s;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

#formMessage,
#contactMessage {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 6px;
    display: none;
}

#formMessage.success,
#contactMessage.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
    display: block;
}

#formMessage.error,
#contactMessage.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
    display: block;
}

/* Footer */
/* Footer */
/* =====================================
   Footer Styles
   ===================================== */
.footer {
    background: transparent;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-bottom {
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-contact-link {
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #f4a21f, #d89419);
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #f4a21f;
    box-shadow: 0 4px 15px rgba(244, 162, 31, 0.3);
}

.footer-contact-link i {
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #d89419, #f4a21f);
    box-shadow: 0 8px 25px rgba(244, 162, 31, 0.5);
    transform: translateY(-3px);
    border-color: #ffffff;
}

.footer-contact-link:hover i {
    transform: scale(1.2) rotate(10deg);
}

.footer-separator {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #f4a21f;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright strong {
    color: #f4a21f;
    font-weight: 600;
}

.design-by {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.design-by a {
    color: #f4a21f;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.design-by a:hover {
    text-decoration: underline;
}

.footer-credit a {
    color: #f4a21f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: #f4a21f;
    border-bottom-color: #f4a21f;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.footer-credit i {
    color: #dc2626;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {

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

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}