:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #F5D76E;
    --gold-dark: #B7950B;
    --gold-light: #FFF8DC;
    --white: #FFFFFF;
    --light-bg: #FFFEF9;
    --card-bg: #FFFDF5;
    --text-dark: #ffffff;
    --text-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Minecraftia', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8));
    animation: logoPulse 2s infinite alternate;
    object-fit: cover;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8));
    }
    100% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 35px rgba(212, 175, 55, 1));
    }
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    border-top-color: var(--gold-primary);
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin-bottom: 20px;
}

.loading-text {
    color: var(--gold-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 2s linear infinite;
    margin-top: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 0.5s;
    position: relative;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Background dengan partikel emas interaktif */
.gold-particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(135deg, 
            rgba(255, 253, 245, 0.9) 0%, 
            rgba(255, 248, 225, 0.9) 25%,
            rgba(255, 245, 215, 0.95) 50%,
            rgba(255, 242, 205, 0.9) 75%,
            rgba(255, 240, 195, 0.85) 100%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(212, 175, 55, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(183, 149, 11, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 40%,
            rgba(245, 215, 110, 0.08) 0%,
            transparent 70%
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.02) 2px,
            rgba(212, 175, 55, 0.02) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(183, 149, 11, 0.02) 2px,
            rgba(183, 149, 11, 0.02) 4px
        );
    background-blend-mode: overlay, screen, screen, multiply, normal, normal;
    overflow: hidden;
    animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% {
        background-position: 
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%;
    }
    100% {
        background-position: 
            100px 50px,
            -30px -30px,
            40px -40px,
            20px 20px,
            50px 50px,
            -50px -50px;
    }
}

/* Tambahkan efek glitter di sudut-sudut */
.gold-particle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 10% 10%,
            rgba(255, 255, 255, 0.8) 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, 0.8) 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(255, 255, 255, 0.8) 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(255, 255, 255, 0.8) 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 255, 255, 0.6) 2px,
            transparent 3px
        );
    background-size: 
        300px 300px,
        300px 300px,
        300px 300px,
        300px 300px,
        500px 500px;
    opacity: 0.1;
    animation: glitter 8s linear infinite;
}

@keyframes glitter {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.02);
    }
}

/* Tambahkan efek cahaya emas yang bergerak */
.gold-particle-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.05),
        transparent
    );
    animation: lightSweep 15s ease-in-out infinite;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

/* Update partikel emas untuk lebih menarik */
.gold-particle {
    position: absolute;
    background: radial-gradient(
        circle at 30% 30%,
        var(--gold-primary) 0%,
        var(--gold-secondary) 30%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 20s infinite linear;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.2;
        transform: translateY(50vh) translateX(50px) rotate(180deg) scale(1);
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* Tambahkan partikel besar khusus untuk efek khusus */
.gold-particle.special {
    width: 100px !important;
    height: 100px !important;
    background: radial-gradient(
        circle,
        var(--gold-primary) 0%,
        var(--gold-secondary) 20%,
        transparent 60%
    );
    opacity: 0.05;
    animation: floatParticleSpecial 30s infinite ease-in-out;
    filter: blur(2px);
}

@keyframes floatParticleSpecial {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.03;
    }
    25% {
        transform: translate(100px, -50px) scale(1.2);
        opacity: 0.06;
    }
    50% {
        transform: translate(200px, 50px) scale(0.8);
        opacity: 0.04;
    }
    75% {
        transform: translate(-100px, -100px) scale(1.1);
        opacity: 0.07;
    }
}

/* Header & Navigasi */
header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(183, 149, 11, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--white);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    object-fit: cover;
    animation: logoGlow 3s infinite alternate;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    color: #ffffff;
    margin-top: 8px;
    line-height: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Menu aktif dengan border putih */
nav a.active {
    border: 2px solid rgba(255, 255, 255, 0.6); /* opacity 50% */   /* atau gunakan var(--white) jika sudah didefinisikan */
    background: transparent;
    color: #ffffff;
    border-radius: 25px;         /* sesuaikan dengan bentuk menu */
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

nav a:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    border-radius: 27px;
    z-index: -1;
    animation: borderGlow 2s linear infinite;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Section untuk halaman kontak */
.contact-hero {
    padding: 12rem 5% 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(183, 149, 11, 0.3) 100%),
        url('p1.png') center/cover no-repeat;
    background-blend-mode: overlay;
    position: relative;
    z-index: 1;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: inline-block;
    max-width: 900px;
}

.contact-hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--gold-secondary), var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)); }
    to { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)); }
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--white);
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Section Kontak */
.contact-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin: 0 auto 3rem;
    color: var(--gold-dark);
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Konten kontak */
.contact-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.contact-option {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
}

.contact-option:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    animation: optionFloat 0.5s ease-out;
}

@keyframes optionFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.03);
    }
    100% {
        transform: translateY(-15px) scale(1.02);
    }
}

.contact-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.05), 
        transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.contact-option:hover::after {
    transform: translateX(100%);
}

.contact-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-option:hover .contact-icon {
    transform: scale(1.2);
    animation: iconPulse 0.5s ease-in-out;
}

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

.whatsapp-option .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.discord-option .contact-icon {
    background: linear-gradient(135deg, #7289DA, #5B6EAE);
}

.tiktok-option .contact-icon {
    background: linear-gradient(135deg, #000000, #69C9D0, #EE1D52);
}

.contact-option h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.contact-option h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.contact-option:hover h3::after {
    width: 80px;
}

.contact-option p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    opacity: 0.9;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.7s;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    animation: buttonShake 0.5s ease-in-out;
}

@keyframes buttonShake {
    0%, 100% {
        transform: translateY(-8px) scale(1.05) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) scale(1.05) rotate(-2deg);
    }
    75% {
        transform: translateY(-8px) scale(1.05) rotate(2deg);
    }
}

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

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

/* Rekomendasi */
.recommendation {
    text-align: center;
    margin-top: 5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    animation: recommendationPulse 4s infinite;
}

@keyframes recommendationPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    }
}

.recommendation::before {
    content: 'REKOMENDASI';
    position: absolute;
    top: 10px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.9rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    animation: badgeGlow 2s infinite alternate;
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    to {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
}

.recommendation h3 {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.recommendation h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    bottom: -5px;
    left: 0;
    animation: lineGrow 2s infinite alternate;
}

@keyframes lineGrow {
    from {
        width: 50px;
    }
    to {
        width: 100px;
    }
}

.recommendation p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Teks dengan efek gradien berjalan */
.gradient-text {
    background: linear-gradient(90deg, 
        var(--gold-primary), 
        var(--gold-secondary), 
        var(--gold-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Tombol kembali di bawah konten */
.back-to-home {
    text-align: center;
    margin: 4rem auto;
    padding: 0 5%;
}

.back-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

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

.back-button-large:hover::before {
    left: 100%;
}

.back-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
}

.back-button-large i {
    transition: transform 0.3s ease;
}

.back-button-large:hover i {
    transform: translateX(-5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: var(--white);
    padding: 4rem 5% 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('p1.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--white);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
    animation: linePulse 2s infinite;
}

@keyframes linePulse {
    0%, 100% {
        width: 40px;
    }
    50% {
        width: 60px;
    }
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    width: 20px;
    color: var(--gold-light);
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Responsiveness */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    nav ul {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    nav a {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
    
    @media (hover: none) and (pointer: coarse) {
        nav a:hover {
            transform: none;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        nav a:hover::after {
            display: none;
        }
        
        .logo-img:hover {
            transform: none;
        }
        
        .contact-option:hover {
            transform: none;
            animation: none;
        }
        
        .contact-option:hover .contact-icon {
            transform: none;
            animation: none;
        }
        
        .contact-link:hover {
            transform: none;
            animation: none;
        }
        
        .back-button-large:hover {
            transform: none;
        }
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .contact-hero {
        padding: 9rem 1rem 4rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content {
        padding: 1.5rem;
        margin: 0;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-option {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .back-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .contact-option h3 {
        font-size: 1.5rem;
    }
    
    .recommendation {
        padding: 1.5rem;
    }
    
    .recommendation h3 {
        font-size: 1.5rem;
    }
    
    .recommendation p {
        font-size: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .loading-logo {
        width: 100px;
        height: 100px;
    }
}