/* style.css - semua CSS dari kode sebelumnya */
:root {
    --gold: #D4AF37;
    --rose-gold: #B76E79;
    --dark-gold: #8B6914;
    --ivory: #FFFFF0;
    --charcoal: #2C2C2C;
    --paper: #F8F5F0;
    --light-gold: #F5E8C7;
    --sage-light: #E8F5E9;
    --sage-medium: #C8E6C9;
    --sage-dark: #A5D6A7;
    --sage-deep: #81C784;
    --quran-gold: #B8860B;
    --quran-green: #2E8B57;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--paper) 0%, var(--light-gold) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.loading-logo {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.loading-text {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: var(--rose-gold);
    margin-bottom: 2rem;
    position: relative;
}

.loading-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.loading-spinner {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    border: 2px solid transparent;
    border-bottom: 2px solid var(--rose-gold);
    animation: spinReverse 1s linear infinite;
}

/* Landing Page */
.landing-page {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(rgba(120, 184, 120, 0.9), rgba(120, 184, 120, 0.9)), 
                url('assets/images/Background 6.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .landing-page {
        background-attachment: fixed;
    }
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.landing-content {
    max-width: min(800px, 95%);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.landing-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.8rem, 10vw, 5.5rem);
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.landing-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 3.5vw, 1.8rem);
    color: var(--ivory);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Countdown Timer */
.countdown-container {
    margin: 2rem auto;
    max-width: min(600px, 90%);
}

.countdown-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: 1.5rem;
}

.countdown-item {
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: clamp(1rem, 3vw, 1.5rem);
    min-width: clamp(70px, 18vw, 100px);
    text-align: center;
    transition: var(--transition);
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--ivory);
    line-height: 1;
}

.countdown-label {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--light-gold);
    text-transform: uppercase;
}

/* Open Invitation Button */
.open-invitation-btn {
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    color: white;
    padding: clamp(0.9rem, 3vw, 1.2rem) clamp(2rem, 6vw, 3.5rem);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: clamp(0.7rem, 2vw, 1rem);
    margin: 2rem auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.open-invitation-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

/* Door Animation */
.door-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    display: none;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0806 0%, #1a140f 100%);
    z-index: 9998;
}

.door-container.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.castle-door {
    position: relative;
    width: min(700px, 95%);
    height: min(900px, 85vh);
    perspective: 1200px;
    z-index: 2;
}

@media (max-width: 768px) {
    .castle-door {
        height: min(600px, 70vh);
    }
}

.door-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #5D4037 0%, #8B6914 25%, #D4AF37 50%, #8B6914 75%, #5D4037 100%);
    border: clamp(12px, 2vw, 20px) solid #3E2723;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.6), inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.door-left, .door-right {
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #3E2723 0%, #2C1810 100%);
    border: clamp(8px, 1.5vw, 12px) solid var(--gold);
    transition: transform 2.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.door-left {
    left: 0;
    transform-origin: left center;
}

.door-right {
    right: 0;
    transform-origin: right center;
}

.door-handle {
    position: absolute;
    width: clamp(35px, 6vw, 50px);
    height: clamp(35px, 6vw, 50px);
    background: radial-gradient(circle at 30% 30%, #FFD700, #D4AF37);
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}

.left-handle { right: clamp(15px, 3vw, 30px); top: 50%; transform: translateY(-50%); }
.right-handle { left: clamp(15px, 3vw, 30px); top: 50%; transform: translateY(-50%); }

.castle-door.open .door-left { transform: rotateY(-100deg); }
.castle-door.open .door-right { transform: rotateY(100deg); }

.door-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.castle-door.open .door-content {
    display: flex;
    animation: fadeInScale 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s forwards;
}

.invitation-card {
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.95), rgba(240, 235, 225, 0.98));
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 20px;
    text-align: center;
    max-width: min(550px, 90%);
    box-shadow: var(--shadow-lg);
}

.enter-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: white;
    border: none;
    padding: clamp(1rem, 3vw, 1.3rem) clamp(2rem, 6vw, 4rem);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

/* Main Content Sections */
.invitation-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    display: none;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage-medium) 100%);
}

.invitation-content.active {
    display: block;
    animation: contentReveal 1.2s ease forwards;
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
    color: var(--dark-gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(120px, 60%);
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Couple Section */
.couple-container {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 4vw, 6rem);
    flex-wrap: wrap;
}

.couple-card {
    text-align: center;
    max-width: min(380px, 90%);
    padding: clamp(2rem, 4vw, 3rem);
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.photo-frame {
    width: clamp(160px, 40vw, 220px);
    height: clamp(160px, 40vw, 220px);
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--gold), var(--sage-deep));
}

.couple-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

/* Quran Section */
.quran-section {
    padding: clamp(3rem, 6vw, 4rem) 0;
    background: linear-gradient(135deg, #f9f5e7 0%, #f0ead6 100%);
    text-align: center;
}

.quran-verse {
    font-family: 'Amiri', serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #2c3e2c;
    line-height: 2;
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(248, 248, 224, 0.95);
    border-radius: 20px;
    max-width: min(800px, 90%);
    margin: 0 auto;
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Wedding Details */
.details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 4rem);
}

.detail-card {
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.detail-icon {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    margin: 0 auto 1.5rem;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--sage-deep);
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--sage-deep);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

/* RSVP Form */
.rsvp-section, .guestbook-section {
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.rsvp-form, .guestbook-form {
    max-width: min(600px, 90%);
    margin: 0 auto;
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gold);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(129, 199, 132, 0.3);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-deep);
}

.submit-btn {
    background: linear-gradient(135deg, var(--sage-deep), var(--sage-dark));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Guestbook Messages */
.guestbook-messages {
    max-width: min(800px, 90%);
    margin: 2rem auto;
}

.message-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--sage-deep);
}

.message-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--dark-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.message-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.8rem;
}

.message-text {
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Gift Section */
.gift-button-section {
    padding: clamp(3rem, 6vw, 6rem) 0;
    text-align: center;
}

.gift-button-card {
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    max-width: min(600px, 90%);
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.gift-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--sage-deep), var(--sage-dark));
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 1rem;
    transition: var(--transition);
}

/* Gift Page */
.gift-page {
    display: none;
    min-height: 100vh;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    background: linear-gradient(135deg, var(--sage-light), var(--sage-medium));
}

.gift-page.active {
    display: block;
}

.back-to-invitation {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--sage-deep);
    border: 2px solid var(--sage-deep);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.account-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.account-card {
    background: white;
    border: 2px solid var(--sage-deep);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.account-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    background: var(--sage-light);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.copy-btn {
    background: var(--sage-deep);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e2c 0%, #3a4a3a 100%);
    color: white;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.footer-couple {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--gold);
}

.footer-message {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    margin: 2rem 0;
    font-style: italic;
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: clamp(0.6rem, 2vw, 0.8rem) clamp(1rem, 2.5vw, 1.5rem);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: clamp(0.7rem, 2vw, 1rem);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.music-player.show {
    opacity: 1;
    transform: translateY(0);
}

.music-btn {
    width: clamp(35px, 8vw, 45px);
    height: clamp(35px, 8vw, 45px);
    background: linear-gradient(135deg, var(--sage-deep), var(--sage-dark));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Admin Login Button */
.admin-login {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.admin-login-btn {
    background: var(--sage-deep);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    opacity: 0.5;
    transition: var(--transition);
}

.admin-login-btn:hover {
    opacity: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: var(--gold);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes contentReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .couple-container {
        flex-direction: column;
        align-items: center;
    }
    
    .details-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.8rem;
        min-width: 60px;
    }
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .open-invitation-btn:hover,
    .enter-btn:hover,
    .submit-btn:hover {
        transform: none;
    }
    
    .open-invitation-btn:active,
    .enter-btn:active,
    .submit-btn:active {
        transform: scale(0.98);
    }
}

/* ========== FAMILY SECTION PREMIUM ========== */
.family-premium-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.family-premium-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e6 100%);
    border-radius: 24px;
    padding: 0;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.family-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.family-premium-header {
    background: linear-gradient(135deg, #2c3e2c 0%, #3a4a3a 100%);
    padding: 1.8rem 1.5rem;
    text-align: center;
    position: relative;
}

.family-premium-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.family-premium-icon i {
    margin: 0 0.3rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.family-premium-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: white;
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.family-premium-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0.8rem auto 0;
    border-radius: 3px;
}

.family-premium-list {
    padding: 1.5rem;
}

.family-premium-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.family-premium-item:hover {
    transform: translateX(8px);
    border-bottom-color: var(--gold);
}

.family-premium-item i {
    width: 28px;
    color: var(--gold);
    font-size: 1.1rem;
    text-align: center;
}

.family-premium-item span {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 500;
}

.family-premium-item span em {
    color: #999;
    font-style: italic;
    font-size: 0.85rem;
}

.family-premium-divider {
    text-align: center;
    padding: 0.8rem 0;
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.6;
}

.family-premium-family {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    padding: 0.7rem 1rem;
    margin-top: 0.5rem;
    border-bottom: none !important;
}

.family-premium-family i {
    color: var(--dark-gold);
}

.family-premium-family span {
    font-weight: 600;
    color: var(--dark-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .family-premium-container {
        gap: 1.5rem;
    }
    
    .family-premium-card {
        max-width: 100%;
    }
    
    .family-premium-title {
        font-size: 1.3rem;
    }
    
    .family-premium-item span {
        font-size: 0.9rem;
    }
}