:root {
    --primary: #B76E79;
    --secondary: #D4AF37;
    --accent: #F8F0E5;
    --dark: #2C2C2C;
    --light: #FFFFFF;
    --gold: #C9A96E;
    --cream: #FAF3E0;
    --pink: #F8BBD9;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FAF3E0 0%, #F8F0E5 50%, #FFFFFF 100%);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
}

/* Loader Super Elegant */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, #3A2C2F 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.loader-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(183, 110, 121, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.3) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 30px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
    border: 3px solid transparent;
    border-bottom: 3px solid var(--primary);
    animation: spinReverse 1.8s linear infinite;
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border: 2px solid transparent;
    border-left: 2px solid var(--pink);
    animation: spin 1.2s linear infinite;
}

.loader-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary);
    font-size: 20px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.loader-container p {
    color: var(--light);
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
}

.loader-container p::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

/* Enhanced Animations */
.fade-in-up {
    animation: fadeInUp 1.2s ease-out;
}

.fade-in-down {
    animation: fadeInDown 1.2s ease-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

.zoom-in {
    animation: zoomIn 1s ease-out;
}

.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInDown {
    from { 
        opacity: 0;
        transform: translateY(-80px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to { 
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-20px) rotate(2deg); 
    }
    66% { 
        transform: translateY(-10px) rotate(-2deg); 
    }
}

/* Hero Section - Premium Design */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 10% 20%, rgba(183, 110, 121, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(248, 187, 217, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.8" fill="%23B76E79" opacity="0.03"/><circle cx="60" cy="40" r="0.5" fill="%23D4AF37" opacity="0.03"/><circle cx="80" cy="70" r="0.7" fill="%23F8BBD9" opacity="0.03"/><circle cx="40" cy="80" r="0.6" fill="%23C9A96E" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    font-size: 24px;
    color: var(--primary);
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 80%; left: 85%; animation-delay: 1s; }
.floating-element:nth-child(3) { top: 40%; left: 90%; animation-delay: 2s; }
.floating-element:nth-child(4) { top: 70%; left: 15%; animation-delay: 3s; }
.floating-element:nth-child(5) { top: 30%; left: 75%; animation-delay: 4s; }

.couple-photo {
    position: relative;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.couple-photo img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid transparent;
    background: 
        linear-gradient(135deg, var(--primary), var(--secondary), var(--pink)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    box-shadow: 
        var(--shadow-strong),
        inset 0 0 50px rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.couple-photo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--pink));
    opacity: 0.3;
    filter: blur(20px);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.couple-photo:hover img {
    transform: scale(1.08) rotateY(10deg);
    box-shadow: 
        0 35px 80px rgba(183, 110, 121, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.9);
}

.couple-name {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.couple-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.wedding-date {
    font-size: 1.6rem;
    color: var(--dark);
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.wedding-date::before,
.wedding-date::after {
    content: '✻';
    color: var(--secondary);
    margin: 0 25px;
    font-size: 1.4rem;
    animation: spin 3s linear infinite;
}

/* Enhanced Buttons */
.btn-open-invitation {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: 
        var(--shadow-medium),
        0 0 30px rgba(183, 110, 121, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.btn-open-invitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s;
}

.btn-open-invitation:hover::before {
    left: 100%;
}

.btn-open-invitation:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        var(--shadow-strong),
        0 0 40px rgba(183, 110, 121, 0.4);
    color: var(--light);
}

/* Premium Music Control */
.music-control {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.btn-music {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 3px solid var(--light);
    color: var(--light);
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-music:hover::before {
    opacity: 1;
}

.btn-music:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 
        var(--shadow-strong),
        0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-music i {
    position: relative;
    z-index: 1;
}

/* Enhanced Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.08);
    padding: 1.2rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.navbar-brand:hover::after {
    width: 100%;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
    transition: left 0.4s;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Premium Countdown */
.countdown-section {
    background: linear-gradient(135deg, var(--dark) 0%, #3A2C2F 100%);
    color: var(--light);
    margin-top: 76px;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(183, 110, 121, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
}

.countdown-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--light);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.countdown-title::after {
    content: '❦❦❦';
    display: block;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 20px;
    letter-spacing: 10px;
    opacity: 0.7;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    min-width: 130px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.countdown-item::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.7s;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.countdown-item span {
    font-size: 3.2rem;
    font-weight: 300;
    display: block;
    color: var(--secondary);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.countdown-item small {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Enhanced Event Cards */
.event-section {
    padding: 6rem 0;
    background: var(--light);
    position: relative;
}

.event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.event-card {
    background: var(--light);
    border-radius: 25px;
    padding: 45px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(183, 110, 121, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.event-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(183, 110, 121, 0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.event-card:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

.event-card h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.event-details p {
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

.event-details i {
    color: var(--secondary);
    width: 28px;
    margin-right: 18px;
    font-size: 1.3rem;
    transition: var(--transition);
}

.event-card:hover .event-details i {
    transform: scale(1.2);
}

.btn-map {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    color: var(--light);
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-map::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;
}

.btn-map:hover::before {
    left: 100%;
}

.btn-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(183, 110, 121, 0.4);
    color: var(--light);
}

/* Premium Action Buttons */
.action-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--cream) 100%);
    padding: 5rem 0;
    position: relative;
}

.action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(183, 110, 121, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    padding: 35px 25px;
    border-radius: 25px;
    background: var(--light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(183, 110, 121, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.action-btn:hover::before {
    transform: scaleX(1);
}

.action-btn:hover::after {
    opacity: 0.05;
}

.action-btn:hover {
    transform: translateY(-12px) scale(1.05);
    color: var(--primary);
    box-shadow: var(--shadow-strong);
}

.action-btn i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.action-btn:hover i {
    transform: scale(1.3) rotate(10deg);
}

.action-btn span {
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Enhanced Share Buttons */
.share-section {
    background: linear-gradient(135deg, var(--dark) 0%, #3A2C2F 100%);
    padding: 4rem 0;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.share-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.share-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 2rem;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.share-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid transparent;
    color: var(--light);
    font-size: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0.9;
}

.share-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s;
}

.share-btn:hover::after {
    left: 100%;
}

.share-btn i {
    position: relative;
    z-index: 1;
}

.share-btn.whatsapp { color: #25D366; }
.share-btn.instagram { color: #E4405F; }
.share-btn.facebook { color: #1877F2; }

.share-btn:hover {
    transform: scale(1.2) rotate(15deg);
    border-color: currentColor;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Premium Forms */
.rsvp-section,
.ucapan-section,
.sumbangan-section,
.galeri-section {
    padding: 6rem 0;
    background: var(--light);
    position: relative;
}

.section-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '✽✽✽';
    display: block;
    font-size: 2rem;
    color: var(--secondary);
    margin-top: 25px;
    letter-spacing: 15px;
    opacity: 0.7;
}

.rsvp-form,
.ucapan-form,
.sumbangan-form {
    background: var(--light);
    padding: 45px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(183, 110, 121, 0.1);
    position: relative;
    overflow: hidden;
}

.rsvp-form::before,
.ucapan-form::before,
.sumbangan-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.form-control,
.form-select {
    border: 2px solid rgba(183, 110, 121, 0.2);
    padding: 18px 25px;
    border-radius: 15px;
    transition: var(--transition);
    font-size: 1.1rem;
    background: var(--light);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 
        0 0 0 0.2rem rgba(183, 110, 121, 0.15),
        inset 0 2px 10px rgba(0,0,0,0.05);
    background: var(--light);
    transform: translateY(-2px);
}

.attendance-options .form-check {
    margin-bottom: 15px;
}

.attendance-options .form-check-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border: 2px solid rgba(183, 110, 121, 0.2);
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
    background: var(--light);
}

.attendance-options .form-check-input:checked + .form-check-label {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.1), rgba(212, 175, 55, 0.1));
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.attendance-options .form-check-label i {
    color: var(--secondary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.attendance-options .form-check-input:checked + .form-check-label i {
    transform: scale(1.2);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 18px 45px;
    border-radius: 30px;
    width: 100%;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    color: var(--light);
    font-size: 1.2rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-submit::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;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(183, 110, 121, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
    color: var(--light);
}

/* Enhanced Lists */
.ucapan-list,
.sumbangan-list {
    margin-top: 4rem;
}

.ucapan-item,
.sumbangan-item {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(183, 110, 121, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ucapan-item::before,
.sumbangan-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.ucapan-item:hover::before,
.sumbangan-item:hover::before {
    opacity: 1;
}

.ucapan-item:hover,
.sumbangan-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.ucapan-header,
.sumbangan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ucapan-header strong,
.sumbangan-header strong {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.ucapan-date,
.sumbangan-date {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
}

.sumbangan-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sumbangan-type {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.sumbangan-amount {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Premium Galeri */
.galeri-img {
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    position: relative;
    overflow: hidden;
}

.galeri-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.1), rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.galeri-img:hover::before {
    opacity: 1;
}

.galeri-img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: var(--shadow-strong);
}

/* Enhanced QR Code Section */
.qr-section {
    background: var(--light);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(183, 110, 121, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.qr-code {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.qr-code img {
    max-width: 240px;
    border: 10px solid var(--light);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
    filter: blur(15px);
    animation: pulse 3s ease-in-out infinite;
}

.qr-code img:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-strong);
}

.bank-info {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(183, 110, 121, 0.1);
    position: relative;
}

.bank-info::before {
    content: '💝';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: var(--light);
    padding: 0 20px;
}

.bank-info p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bank-info strong {
    color: var(--primary);
    font-size: 1.4rem;
    display: block;
    margin-top: 10px;
}

/* Premium Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #3A2C2F 100%);
    color: var(--light);
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(183, 110, 121, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.footer p {
    font-size: 1.3rem;
    line-height: 2;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.footer-heart {
    color: var(--pink);
    animation: heartbeat 2s ease-in-out infinite;
    display: inline-block;
    margin: 0 10px;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .couple-name {
        font-size: 4.2rem;
    }
    
    .countdown-item {
        min-width: 110px;
        padding: 25px 15px;
    }
    
    .countdown-item span {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .couple-name {
        font-size: 3.2rem;
    }
    
    .wedding-date {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .countdown-timer {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 90px;
        padding: 20px 10px;
        margin-bottom: 15px;
    }
    
    .countdown-item span {
        font-size: 2.2rem;
    }
    
    .event-card {
        padding: 30px 25px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .rsvp-form,
    .ucapan-form,
    .sumbangan-form {
        padding: 30px 25px;
    }
    
    .action-btn {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .share-buttons {
        gap: 20px;
    }
    
    .share-btn {
        width: 55px;
        height: 55px;
    }
    
    .btn-open-invitation {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .couple-photo img {
        width: 200px;
        height: 200px;
    }
    
    .couple-name {
        font-size: 2.5rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 8px;
    }
    
    .countdown-item span {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-title::after {
        font-size: 1.5rem;
        letter-spacing: 10px;
    }
    
    .music-control {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-music {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Selection Color */
::selection {
    background: rgba(183, 110, 121, 0.2);
    color: var(--dark);
}

::-moz-selection {
    background: rgba(183, 110, 121, 0.2);
    color: var(--dark);
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .music-control,
    .share-section {
        display: none !important;
    }
}
/* Acara Page Specific Styles */
.acara-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('assets/img/1.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.couple-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.groom-name, .bride-name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.and-symbol {
    font-size: 2rem;
    color: var(--gold);
    font-family: 'Great Vibes', cursive;
}

.wedding-date {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards, bounce 2s infinite 1.4s;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Countdown Section */
.countdown-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: white;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Event Section */
.event-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--dark);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.events-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.events-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.event-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.event-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.event-timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.event-date {
    flex: 0 0 100px;
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary);
    margin: 0 2rem;
    position: relative;
    z-index: 2;
}

.event-day {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.event-month {
    font-size: 1rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
}

.event-timeline-item:nth-child(odd) .event-content {
    border-left: none;
    border-right: 4px solid var(--primary);
}

.event-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.event-badge {
    background: var(--secondary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    color: var(--dark);
}

.event-timeline-item:nth-child(odd) .event-detail {
    justify-content: flex-end;
}

.event-detail i {
    color: var(--primary);
    margin-right: 0.5rem;
    width: 20px;
}

.event-timeline-item:nth-child(odd) .event-detail i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
}

.event-timeline-item:nth-child(odd) .event-actions {
    justify-content: flex-end;
}

.btn-map, .btn-calendar {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-map:hover, .btn-calendar:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-calendar {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-calendar:hover {
    background: var(--secondary);
}

/* Couple Section */
.couple-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--cream) 100%);
}

.couple-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.groom-info, .bride-info {
    text-align: center;
    flex: 1;
}

.avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.groom-info h3, .bride-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.parents {
    color: var(--dark);
    opacity: 0.8;
    font-size: 1rem;
}

.couple-heart {
    font-size: 3rem;
    color: var(--pink);
    animation: heartbeat 2s ease-in-out infinite;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: white;
}

.info-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(183, 110, 121, 0.1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--dark);
    color: white;
    text-align: center;
}

.footer-couple {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.footer-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-verse {
    color: var(--gold);
    font-style: italic;
    margin-bottom: 2rem;
}

.footer-family {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-family p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-family h4 {
    font-weight: 600;
}

.footer-copyright {
    margin-top: 2rem;
    opacity: 0.7;
}

.footer-copyright i {
    color: var(--pink);
    animation: heartbeat 2s ease-in-out infinite;
}

/* No Events State */
.no-events {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-events i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.no-events h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-events p {
    color: var(--dark);
    opacity: 0.8;
}

/* Map Modal */
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: var(--dark);
    opacity: 0.6;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .couple-names {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .groom-name, .bride-name {
        font-size: 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 70px;
    }
    
    .events-timeline::before {
        left: 30px;
    }
    
    .event-timeline-item {
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .event-timeline-item:nth-child(odd) .event-content {
        border-right: none;
        border-left: 4px solid var(--primary);
    }
    
    .event-timeline-item:nth-child(odd) .event-detail {
        justify-content: flex-start;
    }
    
    .event-timeline-item:nth-child(odd) .event-actions {
        justify-content: flex-start;
    }
    
    .event-date {
        margin: 0 1rem 0 0;
        flex: 0 0 80px;
    }
    
    .couple-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}
/* RSVP Page Specific Styles */
.rsvp-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/img/1.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 76px;
}

.rsvp-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--cream) 100%);
}

.rsvp-header {
    margin-bottom: 3rem;
}

.rsvp-form-container {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(183, 110, 121, 0.1);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(183, 110, 121, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    color: var(--secondary);
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid rgba(183, 110, 121, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(183, 110, 121, 0.15);
    background: var(--light);
}

.form-control.is-valid, .form-select.is-valid {
    border-color: #28a745;
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.form-text {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Attendance Options */
.attendance-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.attendance-option {
    position: relative;
}

.attendance-option input {
    position: absolute;
    opacity: 0;
}

.attendance-label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid rgba(183, 110, 121, 0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light);
}

.attendance-label:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.attendance-label.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.05), rgba(212, 175, 55, 0.05));
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.attendance-hadir.active {
    border-color: #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.1));
}

.attendance-tidak-hadir.active {
    border-color: #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(220, 53, 69, 0.1));
}

.attendance-ragu.active {
    border-color: #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 193, 7, 0.1));
}

.attendance-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.attendance-hadir .attendance-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.attendance-tidak-hadir .attendance-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.attendance-ragu .attendance-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.attendance-label.active .attendance-icon {
    transform: scale(1.1);
}

.attendance-text {
    flex: 1;
    text-align: left;
}

.attendance-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.attendance-text span {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-medium);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    color: var(--light);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    color: #6c757d;
}

.form-note i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rsvp-hero {
        height: 60vh;
        margin-top: 76px;
    }
    
    .rsvp-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .attendance-label {
        padding: 1rem;
    }
    
    .attendance-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }
    
    .btn-submit {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rsvp-hero {
        height: 50vh;
    }
    
    .rsvp-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-section-title {
        font-size: 1.3rem;
    }
    
    .attendance-label {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .attendance-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .attendance-text {
        text-align: center;
    }
}

/* Animation for form sections */
.form-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.form-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Custom validation styles */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4'/%3e%3cpath d='M6 7v2'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
/* Ucapan Page Specific Styles */
.ucapan-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/img/ucapan-bg.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 76px;
}

.ucapan-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--cream) 100%);
}

.ucapan-header {
    margin-bottom: 3rem;
}

.ucapan-form-container {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(183, 110, 121, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.ucapan-list-container {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(183, 110, 121, 0.1);
    max-height: 800px;
    overflow-y: auto;
}

.ucapan-count {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Ucapan List Styles */
.ucapan-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ucapan-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(183, 110, 121, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.ucapan-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ucapan-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    background: rgba(183, 110, 121, 0.08);
}

.ucapan-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ucapan-content {
    flex: 1;
}

.ucapan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ucapan-nama {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.ucapan-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.ucapan-message p {
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
}

/* No Ucapan State */
.no-ucapan {
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
}

.no-ucapan i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-ucapan h5 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Quotes Section */
.quotes-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: white;
}

.quote-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Enhanced CTA Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
}

.cta-button.secondary:hover {
    background: var(--light);
    color: var(--primary);
}

/* Form Styles for Ucapan */
.form-section-title {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    color: var(--secondary);
}

/* Character Counter */
#charCount {
    font-weight: 600;
    color: var(--primary);
}

.text-danger #charCount {
    color: #dc3545;
}

/* Ucapan Footer */
.ucapan-footer {
    border-top: 1px solid rgba(183, 110, 121, 0.2);
    padding-top: 1rem;
}

/* Scrollbar for Ucapan List */
.ucapan-list-container::-webkit-scrollbar {
    width: 6px;
}

.ucapan-list-container::-webkit-scrollbar-track {
    background: rgba(183, 110, 121, 0.1);
    border-radius: 10px;
}

.ucapan-list-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.ucapan-list-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Responsive Design */
@media (max-width: 992px) {
    .ucapan-form-container {
        position: static;
        margin-bottom: 2rem;
    }
    
    .ucapan-list-container {
        max-height: none;
        overflow-y: visible;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .ucapan-hero {
        height: 60vh;
        margin-top: 76px;
    }
    
    .ucapan-form-container,
    .ucapan-list-container {
        padding: 2rem 1.5rem;
    }
    
    .ucapan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .ucapan-date {
        font-size: 0.8rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .ucapan-hero {
        height: 50vh;
    }
    
    .ucapan-form-container,
    .ucapan-list-container {
        padding: 1.5rem 1rem;
    }
    
    .ucapan-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .ucapan-avatar {
        align-self: center;
    }
    
    .ucapan-header {
        align-items: center;
        text-align: center;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
}

/* Animation for new messages */
@keyframes slideInNew {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ucapan-item.new-message {
    animation: slideInNew 0.5s ease;
    background: rgba(40, 167, 69, 0.1);
    border-left-color: #28a745;
}

/* Loading state for form */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Success message */
.ucapan-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #155724;
}

.ucapan-success i {
    color: #28a745;
    margin-right: 0.5rem;
}
/* Sumbangan Page Specific Styles */
.sumbangan-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/img/sumbangan-bg.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 76px;
}

.sumbangan-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--cream) 100%);
}

.sumbangan-header {
    margin-bottom: 3rem;
}

.sumbangan-form-container {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(183, 110, 121, 0.1);
    height: fit-content;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.payment-method {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(183, 110, 121, 0.1);
}

/* QR Code Section */
.qr-section {
    text-align: center;
}

.qr-code-container {
    max-width: 300px;
    margin: 0 auto;
}

.qr-code {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 100%;
    height: auto;
    display: block;
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-code:hover .qr-overlay {
    opacity: 1;
}

.btn-download-qr, .btn-share-qr {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--light);
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download-qr:hover, .btn-share-qr:hover {
    background: var(--primary);
    color: var(--light);
    transform: scale(1.1);
}

/* Bank Info */
.bank-info {
    text-align: center;
}

.bank-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.bank-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bank-details h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.account-number {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0.5rem 0;
    letter-spacing: 2px;
}

.account-name {
    opacity: 0.9;
    margin: 0;
}

.btn-copy-account {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-copy-account:hover {
    background: var(--primary);
    color: var(--light);
}

/* Traditional Methods */
.traditional-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(183, 110, 121, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateX(5px);
    background: rgba(183, 110, 121, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.method-content h5 {
    color: var(--primary);
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.method-content p {
    color: var(--dark);
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

/* Donations Section */
.donations-section {
    padding: 4rem 0;
    background: var(--light);
}

.donations-header {
    margin-bottom: 3rem;
}

.donations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.donation-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(183, 110, 121, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.donation-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.donation-card.uang {
    border-left: 4px solid #28a745;
}

.donation-card.barang {
    border-left: 4px solid var(--primary);
}

.donation-card.lainnya {
    border-left: 4px solid var(--secondary);
}

.donation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.donor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.donor-info h5 {
    color: var(--primary);
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.donation-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.donation-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

.donation-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
}

.donation-type {
    background: rgba(183, 110, 121, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.donation-footer p {
    color: var(--dark);
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* No Donations State */
.no-donations {
    grid-column: 1 / -1;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
}

.no-donations i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-donations h5 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Donations Footer */
.donations-footer {
    border-top: 1px solid rgba(183, 110, 121, 0.2);
    padding-top: 1rem;
}

/* Form Styles */
.form-section-title {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    color: var(--secondary);
}

/* Input Group Styles */
.input-group-text {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sumbangan-form-container {
        margin-bottom: 2rem;
    }
    
    .bank-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .donations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sumbangan-hero {
        height: 60vh;
        margin-top: 76px;
    }
    
    .sumbangan-form-container,
    .payment-method {
        padding: 2rem 1.5rem;
    }
    
    .method-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .method-icon {
        margin-bottom: 0.5rem;
    }
    
    .donation-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .donation-body {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sumbangan-hero {
        height: 50vh;
    }
    
    .sumbangan-form-container,
    .payment-method {
        padding: 1.5rem 1rem;
    }
    
    .qr-code-container {
        max-width: 250px;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
    
    .account-number {
        font-size: 1.2rem;
    }
}

/* Animation for new donations */
@keyframes slideInNew {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.donation-card.new-donation {
    animation: slideInNew 0.5s ease;
    background: rgba(40, 167, 69, 0.1);
    border-left-color: #28a745;
}

/* Custom Alert Styles */
.custom-alert {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
    animation: slideInRight 0.3s ease;
}

.custom-alert-content {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 4px solid #28a745;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-alert-error .custom-alert-content {
    border-left-color: #dc3545;
}

.custom-alert-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading state for form */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.footer-copyright {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.footer-copyright img {
    vertical-align: middle;
    margin-right: 6px;
}