.elementor-kit-7{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#F4F6FA;--e-global-color-text:#0f172a;--e-global-color-accent:#2563EB;--e-global-color-129340f:#7C3AED;--e-global-color-8e19731:#D97706;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-size:16px;--e-global-typography-primary-font-weight:800;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-size:14px;--e-global-typography-secondary-font-weight:700;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:15px;--e-global-typography-text-font-weight:500;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-size:36px;--e-global-typography-accent-font-weight:400;background-color:#ffffff;color:#334155;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 a:hover{color:#f97316;}.elementor-kit-7 h1{color:#1e3a8a;font-family:"Plus Jakarta Sans", Sans-serif;font-size:46px;font-weight:800;}.elementor-kit-7 h2{color:#0f172a;font-family:"Plus Jakarta Sans", Sans-serif;font-size:28px;font-weight:700;}.elementor-kit-7 h3{color:#0f172a;font-family:"Plus Jakarta Sans", Sans-serif;font-size:22px;font-weight:700;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ==========================================================================
   ICSMMAI 2027 - Light Theme Design System
   International Conference on Smart Manufacturing, Materials and AI
   ========================================================================== */

/* --- Import Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
    /* Light Theme Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f4f6fa;
    --bg-tertiary: #e8ecf3;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fc;

    /* Text Colors */
    --text-primary: #1a1d2b;
    --text-secondary: #4a5168;
    --text-muted: #8a93aa;

    /* Accent Colors (softer, more professional) */
    --accent-blue: #2563eb;
    --accent-teal: #0d9488;
    --accent-amber: #d97706;
    --accent-purple: #7c3aed;
    --accent-orange: #ea580c;

    /* Glass Morphism (light) */
    --card-bg: #ffffff;
    --card-border: #e2e6ee;
    --card-border-hover: #cbd0da;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.06);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb, #7c3aed);
    --gradient-blue: linear-gradient(135deg, #2563eb, #0d9488);
    --gradient-amber: linear-gradient(135deg, #d97706, #ea580c);
    --gradient-purple: linear-gradient(135deg, #7c3aed, #a855f7);

    /* Typography */
    --font-primary: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-glow-blue: 0 4px 20px rgba(37, 99, 235, 0.15);
    --shadow-glow-purple: 0 4px 20px rgba(124, 58, 237, 0.15);
    --shadow-glow-amber: 0 4px 20px rgba(217, 119, 6, 0.15);

    /* Layout */
    --max-width: 1200px;
    --header-height: 76px;
    --section-padding: 100px 6%;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-primary);
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: #c4c9d4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a8b7;
}

/* Selection */
::selection {
    background: rgba(37, 99, 235, 0.12);
    color: var(--text-primary);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-amber {
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orange-highlight {
    color: var(--accent-amber);
}

/* ==========================================================================
   Scroll Progress Bar
   ========================================================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10001;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

#preloader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.preloader-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(37, 99, 235, 0.1);
    border-top-color: var(--accent-blue);
    border-right-color: var(--accent-purple);
    animation: preloader-spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.preloader-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 8px;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
    color: #ffffff;
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
}

.btn-amber {
    background: var(--gradient-amber);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.2);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.35);
    color: #ffffff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 6px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

/* No announcement bar - removed as requested */

.header-main-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

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

.logo-container img {
    height: 46px;
    width: auto;
    display: block;
}

#nav-menu ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

#nav-menu ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 4px 0;
    position: relative;
}

#nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

#nav-menu ul li a:hover::after,
#nav-menu ul li a.active::after {
    width: 100%;
}

#nav-menu ul li a:hover,
#nav-menu ul li a.active {
    color: var(--text-primary);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

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

.has-dropdown .caret-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .caret-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13.5px !important;
    color: var(--text-secondary) !important;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background: var(--bg-secondary);
    color: var(--accent-blue) !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    color: var(--accent-blue);
}

.mobile-nav-buttons {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 130px 6% 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f4fe 0%, #faf5ff 50%, #f0fdf4 100%);
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: glow-pulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes glow-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.hero-tagline i {
    font-size: 8px;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-title .orange-highlight {
    color: var(--accent-amber);
}

/* Indexing Badges */
.indexing-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
}

.badge-blue {
    color: var(--accent-blue);
    border-color: rgba(37, 99, 235, 0.2);
}

.badge-amber {
    color: var(--accent-amber);
    border-color: rgba(217, 119, 6, 0.2);
}

.badge-purple {
    color: var(--accent-purple);
    border-color: rgba(124, 58, 237, 0.2);
}

.hero-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-meta-item i {
    color: var(--accent-blue);
    font-size: 16px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Hero Right Column */
.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wat-arun-frame {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 3px solid var(--card-border);
    box-shadow: var(--shadow-premium);
    background: url('https://icsmmai.com/wp-content/uploads/2026/07/bangkok_skyline.jpg') center center / cover no-repeat;
    z-index: 2;
    overflow: hidden;
}

.wat-arun-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.06));
    z-index: 1;
}

.wat-arun-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(37, 99, 235, 0.2);
    animation: rotate-slow 30s linear infinite;
    z-index: 1;
}

.wat-arun-ring-2 {
    position: absolute;
    top: -35px;
    left: -35px;
    right: -35px;
    bottom: -35px;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.1);
    animation: rotate-slow 40s linear infinite reverse;
    z-index: 1;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 6s ease-in-out infinite alternate;
}

.floating-card-1 {
    top: 10px;
    right: -10px;
    animation-delay: 0.5s;
}

.floating-card-2 {
    bottom: 10px;
    left: -10px;
    animation-delay: 1.5s;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-12px);
    }
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.floating-card-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Countdown Timer */
.hero-countdown-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.countdown-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    max-width: 80px;
    line-height: 1.3;
    flex-shrink: 0;
}

.countdown-grid {
    display: flex;
    gap: 10px;
}

.countdown-item {
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    min-width: 65px;
    box-shadow: var(--shadow-soft);
}

.countdown-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.countdown-unit {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-ticker {
    width: 100%;
    padding: 50px 6%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    position: relative;
    z-index: 2;
}

.stats-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   Section Base Styles
   ========================================================================== */
section {
    padding: var(--section-padding);
    width: 100%;
    position: relative;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-blue);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
}

.section-label-amber {
    color: var(--accent-amber);
}

.section-label-purple {
    color: var(--accent-purple);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* ==========================================================================
   Card Base
   ========================================================================== */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   About / Welcome Section
   ========================================================================== */
.welcome-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.welcome-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: var(--text-secondary);
}

/* Focus Areas */
.focus-areas-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.focus-areas-container h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.focus-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.focus-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    transition: var(--transition-fast);
    cursor: default;
}

.focus-card-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.focus-card-item i {
    font-size: 20px;
    color: var(--accent-blue);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 8px;
    flex-shrink: 0;
}

.focus-card-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* ==========================================================================
   Important Dates Preview (Homepage)
   ========================================================================== */
.dates-cards-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.date-card-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.date-card-item:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   Supported By / Indexing Partners
   ========================================================================== */
.supported-by-section {
    width: 100%;
    padding: 50px 6%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    text-align: center;
}

.supported-by-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.supported-by-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo-item {
    transition: var(--transition-fast);
    opacity: 0.7;
}

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

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

/* ==========================================================================
   Speakers / Committee Preview
   ========================================================================== */
.speaker-preview-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.speaker-preview-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.speaker-preview-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-medium);
}

.speaker-preview-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glow-blue);
}

.speaker-preview-avatar i {
    font-size: 32px;
    color: #ffffff;
}

.speaker-preview-avatar-amber {
    background: var(--gradient-amber);
    box-shadow: var(--shadow-glow-amber);
}

.speaker-preview-avatar-purple {
    background: var(--gradient-purple);
    box-shadow: var(--shadow-glow-purple);
}

.speaker-preview-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.speaker-preview-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.speaker-preview-role-amber {
    color: var(--accent-amber);
}

.speaker-preview-role-purple {
    color: var(--accent-purple);
}

.speaker-preview-org {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.speaker-preview-track {
    font-size: 12px;
    color: var(--accent-amber);
    font-weight: 600;
    margin-top: 8px;
}

/* ==========================================================================
   Page Banner (Subpages)
   ========================================================================== */
.page-banner {
    position: relative;
    padding: 130px 6% 80px;
    background: linear-gradient(135deg, #f0f4fe 0%, #faf5ff 50%, #f0fdf4 100%);
    border-bottom: 1px solid var(--card-border);
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

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

.page-banner-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-blue);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.page-banner-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-banner-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   Content Section (Subpages)
   ========================================================================== */
.content-section {
    padding: var(--section-padding);
}

.content-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.content-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-medium);
}

.content-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.content-card-icon-amber {
    background: rgba(217, 119, 6, 0.08);
    color: var(--accent-amber);
}

.content-card-icon-purple {
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-purple);
}

.content-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.content-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.content-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.content-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.content-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* ==========================================================================
   Accordion (CFP, FAQ)
   ========================================================================== */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.accordion-item:hover {
    border-color: var(--card-border-hover);
}

.accordion-item.active {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-glow-blue);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.accordion-header h3 {
    font-size: 17px;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-header h3 i {
    color: var(--accent-blue);
    font-size: 18px;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--text-muted);
    font-size: 16px;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content-inner {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
}

.accordion-content-inner ul {
    list-style: none;
    padding: 0;
}

.accordion-content-inner ul li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.accordion-content-inner ul li i {
    color: var(--accent-blue);
    margin-top: 4px;
    font-size: 12px;
}

/* ==========================================================================
   Tabs (Committee)
   ========================================================================== */
.tabs-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 4px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 8px;
    font-family: var(--font-primary);
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
    color: #ffffff;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow-blue);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

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

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.profile-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-medium);
}

.profile-image-container {
    position: relative;
    padding-top: 80%;
    background: var(--bg-secondary);
    overflow: hidden;
}

.profile-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
}

.profile-img-placeholder i {
    font-size: 56px;
    color: rgba(37, 99, 235, 0.08);
}

.profile-img-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

.profile-info-overlay {
    padding: 24px;
}

.profile-name {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.profile-role {
    font-size: 13px;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.profile-affiliation {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   Registration
   ========================================================================== */
.registration-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.reg-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.currency-toggle {
    display: flex;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 50px;
    border: 1px solid var(--card-border);
    max-width: 250px;
    width: 100%;
}

.currency-option {
    flex: 1;
    padding: 10px 24px;
    border: none;
    background: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.currency-option.active {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.currency-option:hover:not(.active) {
    color: var(--text-primary);
}

.reg-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.reg-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.reg-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-medium);
}

.reg-card.featured {
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-glow-blue);
}

.reg-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.reg-title {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.reg-price {
    margin-bottom: 24px;
}

.price-value,
.price-value-r2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.currency-symbol {
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
    margin-right: 4px;
    color: var(--accent-blue);
}

.price-unit {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

.reg-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.reg-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    margin-top: auto;
}

.reg-features li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-features li i {
    color: var(--accent-blue);
    font-size: 12px;
}

.paypal-checkout-container {
    margin-top: auto;
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
}

.paypal-dropdown {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--bg-primary);
    font-family: var(--font-primary);
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.paypal-dropdown:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.paypal-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0070ba, #003087);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
    font-size: 15px;
}

.paypal-submit-btn:hover {
    background: linear-gradient(135deg, #003087, #001c4a);
    transform: translateY(-1px);
}

.paypal-submit-btn i {
    font-size: 20px;
}

/* ==========================================================================
   Timeline (Dates Page)
   ========================================================================== */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-purple));
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-marker {
    position: absolute;
    top: 28px;
    left: 100%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--accent-blue);
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-item:nth-child(even) .timeline-marker {
    left: 0;
}

.timeline-item.active .timeline-marker {
    background: var(--accent-blue);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.2);
}

.timeline-content {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-medium);
}

.timeline-date {
    display: inline-block;
    font-size: 13px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.timeline-title {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.timeline-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    background: var(--bg-secondary);
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.timeline-item.active .timeline-status {
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
}

/* ==========================================================================
   Venue & Contact
   ========================================================================== */
.venue-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: start;
}

.venue-details h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.venue-details p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.venue-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--card-border);
    height: 400px;
}

.venue-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-medium);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-info-card a {
    color: var(--accent-blue);
}

/* ==========================================================================
   Invitation Letter Box
   ========================================================================== */
.invitation-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: var(--shadow-soft);
}

.invitation-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.invitation-box p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ==========================================================================
   Guidelines / Policy Text
   ========================================================================== */
.guidelines-container {
    max-width: 800px;
    margin: 0 auto;
}

.guidelines-container p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    padding: 60px 6% 24px;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 40px;
}

.footer-info-col img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-info-col p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.social-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-blue);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--accent-blue);
    margin-top: 3px;
    font-size: 14px;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 12px;
}

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive - Tablet (max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    :root {
        --section-padding: 80px 5%;
    }

    /* Header */
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--card-border);
    }

    #nav-menu.active {
        right: 0;
    }

    #nav-menu ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    #nav-menu ul li a::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
        width: 100%;
    }

    .mobile-nav-buttons .btn {
        width: 100%;
    }

    /* Dropdown mobile */
    .has-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        min-width: auto;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 300px;
    }

    .has-dropdown .dropdown-menu li a {
        padding: 8px 0;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .indexing-badges {
        justify-content: center;
    }

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

    .hero-countdown-container {
        justify-content: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .wat-arun-frame {
        width: 300px;
        height: 300px;
    }

    .floating-card-1 {
        top: 0;
        right: 0;
    }

    .floating-card-2 {
        bottom: 0;
        left: 0;
    }

    /* Layout */
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

    .reg-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .venue-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-banner-title {
        font-size: 34px;
    }
}

/* ==========================================================================
   Responsive - Mobile (max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-section {
        padding: 110px 20px 60px;
    }

    .hero-meta {
        gap: 16px;
    }

    .hero-meta-item {
        font-size: 13px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-countdown-container {
        flex-direction: column;
        gap: 12px;
    }

    .countdown-label {
        max-width: 100%;
    }

    .wat-arun-frame {
        width: 240px;
        height: 240px;
    }

    .floating-card {
        padding: 10px 14px;
    }

    .floating-card-1 {
        top: -10px;
        right: -5px;
    }

    .floating-card-2 {
        bottom: -10px;
        left: -5px;
    }

    .floating-card-text {
        font-size: 11px;
    }

    .floating-card-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

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

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .content-grid-3 {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        padding: 110px 20px 60px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .tabs-nav {
        flex-direction: column;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    /* Timeline mobile */
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-marker {
        left: 20px !important;
        top: 30px !important;
    }

    .invitation-box {
        padding: 24px 20px;
    }

    .reg-card {
        padding: 28px 20px;
    }

    .price-value,
    .price-value-r2 {
        font-size: 36px;
    }
}

/* ==========================================================================
   Responsive - Small Mobile (max-width: 480px)
   ========================================================================== */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .indexing-badges {
        flex-direction: column;
        align-items: center;
    }

    .countdown-grid {
        gap: 6px;
    }

    .countdown-item {
        min-width: 55px;
        padding: 6px 10px;
    }

    .countdown-number {
        font-size: 18px;
    }
}/* End custom CSS */