/* Anime Theme Variables */
:root {
    --primary: #1a0d2e;
    --secondary: #16213e;
    --accent: #ff6b9d;
    --accent-2: #4ecdc4;
    --accent-3: #ffe66d;
    --text: #ffffff;
    --text-dim: #b8b8ff;
    --kawaii-pink: #ffb3d9;
    --kawaii-blue: #b3e5ff;
    --kawaii-purple: #d9b3ff;
    --glass: rgba(255, 255, 255, 0.15);
    --glow: 0 0 30px rgba(255, 107, 157, 0.4);
    --border: rgba(255, 107, 157, 0.3);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] {
    --primary: #fff0f8;
    --secondary: #f8f0ff;
    --accent: #e91e63;
    --accent-2: #00bcd4;
    --accent-3: #ffc107;
    --text: #2d1b69;
    --text-dim: #6a4c93;
    --kawaii-pink: #ffc1e3;
    --kawaii-blue: #c1f0ff;
    --kawaii-purple: #e1c1ff;
    --glass: rgba(255, 255, 255, 0.8);
    --glow: 0 0 20px rgba(233, 30, 99, 0.3);
    --border: rgba(233, 30, 99, 0.2);
}

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

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

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

/* Sakura Animation */
.sakura-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sakura-container::before,
.sakura-container::after {
    content: '🌸';
    position: absolute;
    font-size: 20px;
    animation: sakuraFall 15s linear infinite;
    opacity: 0.7;
}

.sakura-container::before {
    left: 10%;
    animation-delay: 0s;
}

.sakura-container::after {
    left: 80%;
    animation-delay: 7s;
}

@keyframes sakuraFall {
    0% {
        top: -50px;
        transform: rotate(0deg);
    }
    100% {
        top: 100vh;
        transform: rotate(360deg);
    }
}

/* Custom Anime Cursor */
.cursor-anime {
    position: fixed;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, var(--accent) 0%, var(--accent-2) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px var(--accent);
}

.cursor-anime::after {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 12px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Kawaii Navigation */
.nav-kawaii {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
}

.brand-icon {
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.brand-text {
    font-size: 1.3rem;
    background: linear-gradient(45deg, var(--accent), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.kawaii-face {
    font-size: 1rem;
    color: var(--kawaii-pink);
    animation: blink 3s ease-in-out infinite;
}

@keyframes blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-item {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    border-radius: 20px;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent);
    background: var(--glass);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.theme-btn {
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    box-shadow: var(--glow);
    transform: scale(1.1) rotate(15deg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
}

.anime-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--kawaii-pink) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--kawaii-blue) 2px, transparent 2px);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.anime-shape {
    position: absolute;
    font-size: 2rem;
    animation: animeFloat 6s ease-in-out infinite;
    opacity: 0.8;
}

.shape-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.2s;
}

.shape-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 2.4s;
}

.shape-4 {
    top: 40%;
    left: 80%;
    animation-delay: 3.6s;
}

.shape-5 {
    bottom: 60%;
    left: 20%;
    animation-delay: 4.8s;
}

@keyframes animeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    33% { 
        transform: translateY(-20px) rotate(120deg) scale(1.1); 
    }
    66% { 
        transform: translateY(-10px) rotate(240deg) scale(0.9); 
    }
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 0 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 2px solid var(--border);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--accent);
    box-shadow: var(--glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-emoji {
    animation: spin 3s linear infinite;
}

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

.hero-title {
    font-family: 'Comfortaa', cursive;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.title-line {
    display: block;
}

.anime-gradient {
    background: linear-gradient(45deg, var(--accent), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
}

.title-subtitle {
    font-size: 1.2rem;
    color: var(--kawaii-purple);
    font-weight: 400;
    margin-top: 10px;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), var(--accent-2));
    border: none;
    padding: 18px 35px;
    border-radius: 35px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    padding: 18px 35px;
    border-radius: 35px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.btn-emoji {
    animation: bounce 2s ease-in-out infinite;
}

.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    gap: 30px;
}

/* Anime Character */
.anime-character {
    position: relative;
    margin-bottom: 20px;
}

.character-body {
    width: 120px;
    height: 120px;
    position: relative;
}

.character-head {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--kawaii-pink), var(--kawaii-purple));
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: var(--shadow);
    animation: headBob 3s ease-in-out infinite;
}

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

.character-eyes {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.eye {
    width: 15px;
    height: 20px;
    background: #2d1b69;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: eyeBlink 4s ease-in-out infinite;
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.pupil {
    width: 8px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.shine {
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 2px;
}

.character-mouth {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--accent);
}

.character-blush {
    width: 12px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 45px;
    opacity: 0.6;
}

.left-blush {
    left: 15px;
}

.right-blush {
    right: 15px;
}

.speech-bubble {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: var(--accent);
    white-space: nowrap;
    box-shadow: var(--shadow);
    animation: bubbleFloat 3s ease-in-out infinite;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--border);
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* Anime Cards */
.card-stack-anime {
    position: relative;
    perspective: 1000px;
}

.anime-card {
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-1 {
    transform: rotateY(-15deg) rotateX(5deg);
    z-index: 2;
}

.card-2 {
    position: absolute;
    top: 25px;
    left: 35px;
    transform: rotateY(15deg) rotateX(-5deg);
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    z-index: 1;
}

.anime-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.4);
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
}

.card-chip {
    font-size: 2rem;
    margin-bottom: 20px;
    animation: chipGlow 2s ease-in-out infinite;
}

@keyframes chipGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-number {
    font-family: 'Comfortaa', cursive;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-weight: 600;
}

.card-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-mascot {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 1.5rem;
    animation: mascotWave 3s ease-in-out infinite;
}

@keyframes mascotWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 2px solid var(--border);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 20px;
    box-shadow: var(--glow);
    font-weight: 600;
}

.tag-emoji {
    animation: bounce 2s ease-in-out infinite;
}

.section-header h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

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

.about-content h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
}

.emoji {
    animation: bounce 2s ease-in-out infinite;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: bounce 2s ease-in-out infinite;
}

.stat-number {
    font-family: 'Comfortaa', cursive;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 600;
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature-card {
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-sparkles {
    text-align: center;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--glow);
    border-color: var(--accent);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.service-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.service-card h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.service-mascot {
    font-size: 1.8rem;
    animation: mascotWave 3s ease-in-out infinite;
}

.service-card p {
    color: var(--text-dim);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.feature-emoji {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.service-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-btn:hover {
    background: var(--accent);
    color: white;
    box-shadow: var(--glow);
    transform: translateY(-3px);
}

.btn-sparkle {
    animation: spin 2s linear infinite;
}

/* Gold Loan Section */
.goldloan-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

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

.goldloan-info h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--accent);
    font-weight: 800;
}

.goldloan-info p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.7;
}

.loan-features {
    margin-bottom: 40px;
}

.loan-feature {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.loan-feature:hover {
    transform: translateX(15px);
    box-shadow: var(--glow);
    border-color: var(--accent);
}

.loan-feature .feature-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

.feature-text h4 {
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-text p {
    color: var(--text-dim);
    font-size: 1rem;
    margin: 0;
}

.feature-mascot {
    font-size: 1.5rem;
    animation: mascotWave 3s ease-in-out infinite;
}

.goldloan-btn {
    font-size: 1.2rem;
    padding: 20px 40px;
}

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

.gold-animation {
    position: relative;
    width: 250px;
    height: 250px;
}

.gold-coin {
    position: absolute;
    font-size: 4rem;
    animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.coin-2 {
    bottom: 0;
    left: 0;
    animation-delay: 1.3s;
}

.coin-3 {
    bottom: 0;
    right: 0;
    animation-delay: 2.6s;
}

@keyframes coinFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-25px) rotate(180deg) scale(1.1); 
    }
}

.magic-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.7s;
}

.sparkle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1.4s;
}

.sparkle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 2.1s;
}

@keyframes sparkleFloat {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg); 
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg); 
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.contact-form {
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 25px;
    padding: 45px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: var(--secondary);
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 18px;
    color: var(--text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--glow);
    transform: scale(1.02);
}

.input-group label {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--text-dim);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 600;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -12px;
    left: 15px;
    font-size: 0.9rem;
    color: var(--accent);
    background: var(--primary);
    padding: 0 8px;
    border-radius: 5px;
}

.input-group:not(.checkbox-group) input:focus + label,
.input-group:not(.checkbox-group) input:valid + label,
.input-group:not(.checkbox-group) textarea:focus + label,
.input-group:not(.checkbox-group) textarea:valid + label {
    top: -12px;
    left: 15px;
    font-size: 0.9rem;
    color: var(--accent);
    background: var(--primary);
    padding: 0 8px;
    border-radius: 5px;
}

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

.info-card {
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow);
    border-color: var(--accent);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.info-card h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--secondary);
    border: 2px solid var(--border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    border-color: var(--accent);
    box-shadow: var(--glow);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    position: static;
    top: auto;
    left: auto;
    background: none;
    padding: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-top: 2px solid var(--border);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-emoji {
    animation: bounce 2s ease-in-out infinite;
}

.footer-brand p {
    color: var(--text-dim);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    box-shadow: var(--glow);
    transform: translateY(-5px) scale(1.1);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.link-group h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-emoji {
    animation: bounce 2s ease-in-out infinite;
}

.link-group a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding: 5px 0;
    font-weight: 500;
}

.link-group a:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--border);
    color: var(--text-dim);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-kawaii {
        padding: 12px 25px;
        gap: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 0 25px;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .about-grid,
    .goldloan-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
}