:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;
    --dark-gray: #374151;
    --light-gray: #f3f4f6;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #1e40af 0%, #60a5fa 100%);
    --bg-gradient: linear-gradient(
        135deg,
        #1e3a8a 0%,
        #1e40af 50%,
        #3b82f6 100%
    );
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.25);
    --primary-blue-2: #001c54;
    --primary-red: #c2002f;
    --medium-gray: #eaeaea;
    --dark-gray-2: #1a1a1a;
    --shadow-light: rgba(0, 28, 84, 0.1);
    --gradient-primary-2: linear-gradient(
        135deg,
        var(--primary-blue-2),
        #002966
    );
    --gradient-secondary-2: linear-gradient(
        135deg,
        var(--primary-red),
        #d91e49
    );
    --gradient-glass: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    --gradient-hero: linear-gradient(
        135deg,
        var(--primary-blue-2) 0%,
        var(--primary-blue) 30%,
        var(--dark-blue) 70%,
        var(--secondary-blue) 100%
    );
    --gradient-card: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.03) 0%,
        rgba(59, 130, 246, 0.08) 100%
    );
    --text-gradient: linear-gradient(
        135deg,
        var(--primary-blue-2),
        var(--dark-blue)
    );
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: var(--light-gray);
}

html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue-2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Header Enhancement */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--medium-gray);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: slideDown 0.8s ease-out;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px var(--shadow-light);
    padding: 15px 60px;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--primary-blue-2);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

nav a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

nav a:hover::before {
    width: 100%;
}

nav a.active {
    color: var(--primary-red);
}

nav a.active::before {
    width: 100%;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    header {
        padding: 18px 40px;
    }

    nav a {
        margin-left: 25px;
        font-size: 14px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }

    .logo {
        height: 40px;
    }
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 100px 40px 40px;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav a {
    display: block;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.mobile-nav a:hover {
    color: var(--primary-red);
    transform: translateX(10px);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Enhanced Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-badge:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.hero-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.flags-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.flag {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: flagFloat 4s ease-in-out infinite;
    cursor: pointer;
    transform-style: preserve-3d;
}

.flag:hover {
    transform: scale(1.2) rotateY(15deg) translateZ(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@keyframes flagFloat {
    0%,
    100% {
        transform: translateY(0px) rotateX(0deg);
    }

    25% {
        transform: translateY(-5px) rotateX(5deg);
    }

    75% {
        transform: translateY(5px) rotateX(-5deg);
    }
}

.flag-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--secondary-blue),
        var(--light-blue),
        var(--secondary-blue)
    );
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    animation: connector-pulse 2s ease-in-out infinite;
}

.flag-connector::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: connector-shine 2s ease-in-out infinite;
}

@keyframes connector-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes connector-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.flag-indonesia {
    background: linear-gradient(180deg, #ff0000 50%, #ffffff 50%);
    animation-delay: 0s;
}

.flag-australia {
    background: #012169;
    position: relative;
    animation-delay: 0.5s;
}

.flag-australia::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 25px;
    background: linear-gradient(
            -45deg,
            #012169 25%,
            #ffffff 25% 50%,
            #cf142b 50% 75%,
            #ffffff 75%
        ),
        linear-gradient(
            45deg,
            #012169 25%,
            #ffffff 25% 50%,
            #cf142b 50% 75%,
            #ffffff 75%
        );
    background-size: 4px 4px;
}

.flag-australia::after {
    content: "★";
    position: absolute;
    right: 10px;
    top: 8px;
    color: white;
    font-size: 0.8rem;
    animation: star-twinkle 1.5s ease-in-out infinite;
}

@keyframes star-twinkle {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f1c64 0%, #1a2b7a 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: floating-orbs 20s ease-in-out infinite;
}

@keyframes floating-orbs {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Enhanced Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-up 6s infinite linear;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0) rotate(0deg);
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1) rotate(36deg);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1) rotate(324deg);
    }

    100% {
        opacity: 0;
        transform: translateY(0vh) scale(0) rotate(360deg);
    }
}

/* Interactive Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slide-up 1.2s ease-out;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hero-title:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.hero-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
    transition: width 0.5s ease;
}

.hero-title:hover::after {
    width: 100%;
}

/* Enhanced CTA Buttons */
.hero-cta {
    margin-top: 50px;
    animation: slide-up 1.2s ease-out 0.9s both;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Floating Action Button */
.floating-action {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: float-bounce 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.floating-action:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.5);
}

@keyframes float-bounce {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-date {
        font-size: 1.3rem;
        padding: 15px 30px;
    }
}

/* Enhanced Sections */
.section {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section:hover::before {
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: lineExpand 0.8s ease-out 0.3s both;
}

@keyframes lineExpand {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

.section-header p {
    font-size: 1.3rem;
    color: var(--dark-gray);
    opacity: 0.8;
    font-weight: 400;
    line-height: 1.7;
}

/* Enhanced Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 28, 84, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
    cursor: pointer;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary-2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 28, 84, 0.15);
}

.card > * {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary-2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 28, 84, 0.3);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-strong);
}

.card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.3;
}

.card ul {
    list-style: none;
    margin-bottom: 25px;
}

.card ul li {
    padding: 12px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.card ul li:hover {
    color: var(--primary-blue-2);
    transform: translateX(8px);
}

.card ul li:hover::before {
    color: var(--secondary-blue);
    transform: scale(1.2);
}

.card p {
    color: var(--dark-gray);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Enhanced Packages Section */
.packages {
    background: linear-gradient(
        135deg,
        var(--light-gray) 0%,
        var(--medium-gray) 50%,
        #cbd5e1 100%
    );
    position: relative;
}

.packages::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,28,84,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(194,0,47,0.02)"/><circle cx="25" cy="75" r="1" fill="rgba(59,130,246,0.02)"/><circle cx="75" cy="25" r="1" fill="rgba(30,58,138,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.packages::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.1) 0%,
        transparent 70%
    );
    animation: rotate 30s linear infinite;
    z-index: 1;
}

/* Enhanced Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.section-header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Enhanced Grid Layout */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Enhanced Package Cards */
.package-card {
    background: var(--gradient-primary-2);
    color: white;
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 28, 84, 0.3);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.8s;
}

.package-card:hover::before {
    left: 100%;
}

.package-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s;
    animation: rotate 20s linear infinite;
}

.package-card:hover::after {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-30px) scale(1.08);
    box-shadow: 0 60px 120px rgba(0, 28, 84, 0.4);
}

/* Enhanced Card Icon */
.card-icon-exhibition {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.package-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

/* Enhanced Typography */
.package-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 3;
    letter-spacing: -0.01em;
}

.price {
    font-size: 3.2rem;
    font-weight: 900;
    background: none;
    color: white;
    margin: 25px 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Enhanced List */
.package-card ul {
    list-style: none;
    margin: 30px 0;
    position: relative;
    z-index: 3;
}

.package-card ul li {
    color: rgba(255, 255, 255, 0.9);
    margin: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.package-card:hover ul li::before {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.2);
}

/* Enhanced Button */
.package-btn {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue-2);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.package-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.2),
        transparent
    );
    transition: left 0.6s;
}

.package-btn:hover::before {
    left: 100%;
}

.package-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.4);
    background: white;
}

/* Special Featured Card Enhancement */
.package-card.featured:nth-child(2) {
    transform: scale(1.08);
    background: linear-gradient(135deg, #c2002f 0%, #dc2626 50%, #ef4444 100%);
    box-shadow: 0 50px 100px rgba(194, 0, 47, 0.4);
}

.package-card.featured:nth-child(2):hover {
    transform: translateY(-35px) scale(1.12);
    box-shadow: 0 70px 140px rgba(194, 0, 47, 0.5);
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
}

/* Saat muncul di viewport (diberi class visible oleh JS) */
.fade-in.visible {
    animation: fadeInUp 0.8s ease forwards;
}

/* Delay opsional */
.fade-in:nth-child(1).visible {
    animation-delay: 0.1s;
}
.fade-in:nth-child(2).visible {
    animation-delay: 0.3s;
}
.fade-in:nth-child(3).visible {
    animation-delay: 0.5s;
}
.fade-in:nth-child(4).visible {
    animation-delay: 0.7s;
}

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .package-card {
        padding: 40px 30px;
        transform: scale(1);
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .package-card {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Enhanced Animations */
.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 25s linear infinite;
}

.particle:nth-child(odd) {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.particle:nth-child(even) {
    background: radial-gradient(
        circle,
        rgba(194, 0, 47, 0.4) 0%,
        rgba(194, 0, 47, 0.1) 100%
    );
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
        transform: translateY(95vh) rotate(18deg) scale(1);
    }

    95% {
        opacity: 1;
        transform: translateY(-5vh) rotate(340deg) scale(1);
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 40px;
    }

    .package-card.featured {
        transform: none;
    }

    .card {
        padding: 30px;
    }
}

/* Staggered Animation Delays */
.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4) {
    animation-delay: 0.4s;
}

.card:nth-child(5) {
    animation-delay: 0.5s;
}

.card:nth-child(6) {
    animation-delay: 0.6s;
}

.card:nth-child(7) {
    animation-delay: 0.7s;
}

.card:nth-child(8) {
    animation-delay: 0.8s;
}

/* Floating Animation Enhancement */
.floating {
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1e3a8a 50%, #0f1419 100%);
    color: white;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: calc(-50vw + 50%);
}

.footer.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer.animate-out {
    opacity: 0.3;
    transform: translateY(30px) scale(0.98);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 20%,
            rgba(59, 130, 246, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(30, 64, 175, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(99, 102, 241, 0.2) 0%,
            transparent 50%
        ),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)" /></svg>');
    animation: backgroundShift 20s linear infinite;
    pointer-events: none;
}

/* Enhanced Background Pattern */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 20%,
            rgba(59, 130, 246, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(30, 64, 175, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(99, 102, 241, 0.2) 0%,
            transparent 50%
        ),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)" /></svg>');
    animation: backgroundShift 20s linear infinite;
    pointer-events: none;
}

@keyframes backgroundShift {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    100% {
        transform: translateX(-40px) translateY(-40px) rotate(360deg);
    }
}

/* Floating Orbs for Footer */
.footer-floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        rgba(59, 130, 246, 0.15),
        rgba(99, 102, 241, 0.15)
    );
    backdrop-filter: blur(15px);
    animation: footerOrbFloat 8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    opacity: 0;
    transform: scale(0.5);
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer.animate-in .footer-orb {
    opacity: 0.6;
    transform: scale(1);
}

.footer.animate-in .footer-orb:nth-child(1) {
    transition-delay: 0.3s;
}
.footer.animate-in .footer-orb:nth-child(2) {
    transition-delay: 0.5s;
}
.footer.animate-in .footer-orb:nth-child(3) {
    transition-delay: 0.7s;
}
.footer.animate-in .footer-orb:nth-child(4) {
    transition-delay: 0.9s;
}
.footer.animate-in .footer-orb:nth-child(5) {
    transition-delay: 1.1s;
}

.footer-orb:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.footer-orb:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 10%;
    animation-delay: -3s;
}

.footer-orb:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 15%;
    animation-delay: -6s;
}

.footer-orb:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 20%;
    animation-delay: -2s;
}

.footer-orb:nth-child(5) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 50%;
    animation-delay: -4s;
}

@keyframes footerOrbFloat {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translateY(15px) translateX(-15px) rotate(240deg) scale(0.9);
        opacity: 0.7;
    }
}

/* Enhanced Particle System */
.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.footer-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: footerParticleFloat 12s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.footer.animate-in .footer-particle {
    opacity: 0.8;
}

.footer-particle:nth-child(1) {
    width: 3px;
    height: 3px;
    left: 10%;
    animation-delay: 0s;
}
.footer-particle:nth-child(2) {
    width: 5px;
    height: 5px;
    left: 25%;
    animation-delay: -2s;
}
.footer-particle:nth-child(3) {
    width: 4px;
    height: 4px;
    left: 40%;
    animation-delay: -4s;
}
.footer-particle:nth-child(4) {
    width: 6px;
    height: 6px;
    left: 55%;
    animation-delay: -1s;
}
.footer-particle:nth-child(5) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: -3s;
}
.footer-particle:nth-child(6) {
    width: 4px;
    height: 4px;
    left: 85%;
    animation-delay: -5s;
}
.footer-particle:nth-child(7) {
    width: 5px;
    height: 5px;
    left: 15%;
    animation-delay: -2.5s;
}
.footer-particle:nth-child(8) {
    width: 3px;
    height: 3px;
    left: 60%;
    animation-delay: -4.5s;
}
.footer-particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 35%;
    animation-delay: -1.5s;
}
.footer-particle:nth-child(10) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: -3.5s;
}

@keyframes footerParticleFloat {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* Geometric Shapes */
.footer-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.footer-shape {
    position: absolute;
    opacity: 0.08;
    animation: footerShapeRotate 25s linear infinite;
}

.footer-shape-1 {
    top: 20%;
    right: 15%;
    width: 180px;
    height: 180px;
    border: 4px solid rgba(59, 130, 246, 0.6);
    border-radius: 25px;
    animation-delay: 0s;
}

.footer-shape-2 {
    bottom: 20%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 120px solid rgba(99, 102, 241, 0.6);
    animation-delay: -12s;
}

.footer-shape-3 {
    top: 40%;
    left: 30%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(147, 51, 234, 0.6);
    border-radius: 50%;
    animation-delay: -8s;
}

@keyframes footerShapeRotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

/* Glowing Lines */
.footer-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-line {
    position: absolute;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.8),
        rgba(99, 102, 241, 0.8),
        transparent
    );
    height: 2px;
    animation: footerLineMove 8s ease-in-out infinite;
    border-radius: 1px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.footer-line:nth-child(1) {
    top: 25%;
    width: 200px;
    left: -200px;
    animation-delay: 0s;
}

.footer-line:nth-child(2) {
    top: 60%;
    width: 150px;
    left: -150px;
    animation-delay: -4s;
}

.footer-line:nth-child(3) {
    top: 80%;
    width: 180px;
    left: -180px;
    animation-delay: -2s;
}

@keyframes footerLineMove {
    0% {
        left: -200px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Logo and About Section - Combined */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.footer-brand.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo-bg {
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.footer-logo-bg:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.3);
    border-color: var(--secondary-blue);
}

.footer-logo-bg img {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.footer-logo-bg:hover img {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.footer-brand-text {
    flex: 1;
}

.footer-brand-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.footer-brand-title:hover {
    transform: translateX(10px);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.footer-brand-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.footer-about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: default;
}

.footer-section h3:hover {
    transform: translateY(-2px);
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.footer-section h3:hover::after {
    width: 100%;
    animation: glow 2s ease-in-out infinite;
}

.footer-section:nth-child(1) {
    animation: slideInLeft 1s ease-out 0.2s both;
}

.footer-section:nth-child(2) {
    animation: slideInUp 1s ease-out 0.4s both;
}

.footer-section:nth-child(3) {
    animation: slideInRight 1s ease-out 0.6s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-links {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.footer-links.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    opacity: 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links.animate-in li {
    opacity: 1;
    transform: translateX(0);
}

.footer-links.animate-in li:nth-child(1) {
    transition-delay: 0.9s;
}
.footer-links.animate-in li:nth-child(2) {
    transition-delay: 1s;
}
.footer-links.animate-in li:nth-child(3) {
    transition-delay: 1.1s;
}
.footer-links.animate-in li:nth-child(4) {
    transition-delay: 1.2s;
}

.footer-links li:nth-child(1) {
    animation-delay: 0.8s;
}
.footer-links li:nth-child(2) {
    animation-delay: 0.9s;
}
.footer-links li:nth-child(3) {
    animation-delay: 1s;
}
.footer-links li:nth-child(4) {
    animation-delay: 1.1s;
}
.footer-links li:nth-child(5) {
    animation-delay: 1.2s;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.footer-links a:hover::before {
    left: 100%;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(15px) scale(1.05);
    background: var(--accent-blue);
    padding-left: 1rem;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.footer-links .material-icons {
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover .material-icons {
    opacity: 1;
    transform: rotate(360deg) scale(1.2);
    color: var(--secondary-blue);
}

.footer-links a.active {
    color: #ffffff;
    background: var(--accent-blue);
    padding-left: 1rem;
    transform: translateX(15px) scale(1.05);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.footer-links a.active .material-icons {
    opacity: 1;
    transform: rotate(360deg) scale(1.2);
    color: var(--secondary-blue);
}

/* Combined Event and Contact Section */
.footer-event-contact {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.footer-event-contact.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.event-section {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 0.5rem;
}

.event-venue {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.register-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.register-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.register-btn:hover::before {
    left: 0;
}

.register-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
    animation: bounce 0.6s ease;
    color: white;
    text-decoration: none;
}

.register-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.contact-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-event-contact.animate-in .contact-item {
    opacity: 1;
    transform: translateX(0);
}

.footer-event-contact.animate-in .contact-item:nth-child(1) {
    transition-delay: 0.7s;
}
.footer-event-contact.animate-in .contact-item:nth-child(2) {
    transition-delay: 0.8s;
}
.footer-event-contact.animate-in .contact-item:nth-child(3) {
    transition-delay: 0.9s;
}
.footer-event-contact.animate-in .contact-item:nth-child(4) {
    transition-delay: 1s;
}

/* Refined scroll-out animations */
.footer.animate-out .footer-brand {
    opacity: 0;
    transform: translateX(-40px);
    transition-delay: 0s;
}

.footer.animate-out .footer-links {
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.1s;
}

.footer.animate-out .footer-event-contact {
    opacity: 0;
    transform: translateX(40px);
    transition-delay: 0.2s;
}

.footer.animate-out .footer-bottom {
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.3s;
}

/* Smooth performance optimizations */
.footer * {
    will-change: transform, opacity;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .footer,
    .footer *,
    .footer-brand,
    .footer-links,
    .footer-event-contact,
    .footer-bottom,
    .footer-orb,
    .footer-particle,
    .contact-item,
    .social-link {
        transition-duration: 0.3s !important;
        animation-duration: 0.3s !important;
    }
}

.contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.05),
        transparent
    );
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .material-icons {
    color: var(--secondary-blue);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover .material-icons {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: #e0f2fe;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.footer-social {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-brand.animate-in .social-link:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.3s;
}
.footer-brand.animate-in .social-link:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.4s;
}
.footer-brand.animate-in .social-link:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.5s;
}
.footer-brand.animate-in .social-link:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1.6s;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-link:nth-child(1):hover {
    animation: bounce 0.6s ease 0.1s;
}
.social-link:nth-child(2):hover {
    animation: bounce 0.6s ease 0.2s;
}
.social-link:nth-child(3):hover {
    animation: bounce 0.6s ease 0.3s;
}
.social-link:nth-child(4):hover {
    animation: bounce 0.6s ease 0.4s;
}

.social-link .material-icons {
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-link:hover .material-icons {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    animation: slideInUp 1s ease-out 1s both;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}

.footer-bottom.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-bottom-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.footer-bottom-logo:hover {
    transform: scale(1.05);
}

.footer-bottom-logo .material-icons {
    font-size: 1.8rem;
    color: var(--secondary-blue);
    transition: all 0.3s ease;
    animation: float 2s ease-in-out infinite;
}

.footer-bottom-logo:hover .material-icons {
    transform: rotate(360deg);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8));
}

.footer-bottom-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-bottom-logo:hover span {
    color: #f8fafc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-bottom-links span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent
    );
    transition: left 0.4s ease;
}

.footer-bottom-links span:hover::before {
    left: 100%;
}

.footer-bottom-links span:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    transition: all 0.3s ease;
}

.copyright:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-event-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 4rem 1rem 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-brand-text {
        text-align: center;
    }

    .footer-brand-title {
        font-size: 1.5rem;
    }

    .footer-about-text {
        font-size: 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-event-contact {
        padding: 1.5rem;
    }

    .footer-logo-bg {
        padding: 0.8rem;
    }

    .footer-logo-bg img {
        height: 50px;
    }

    .footer-brand-title {
        font-size: 1.3rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}
