:root {
    --gold-primary: #d4af37;
    --gold-secondary: #aa8c2c;
    --royal-red: #800020;
    --cream-bg: #fdfbf7;
    --luxury-font: 'Playfair Display', serif; /* Assuming this or similar is loaded, otherwise it falls back to serif */
}

/* Mandala Background Pattern */
.luxury-mandala-bg {
    background-color: var(--cream-bg);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 10%),
        radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 10%),
        radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 10%),
        radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 10%);
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.luxury-mandala-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: url('data:image/svg+xml;utf8,<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"><circle cx="100" cy="100" r="90"/><path d="M100 10 L100 190 M10 100 L190 100"/><circle cx="100" cy="100" r="40"/><path d="M100 20 Q140 60 180 100 Q140 140 100 180 Q60 140 20 100 Q60 60 100 20 Z"/></g></svg>') no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: mandala-spin 60s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

@keyframes mandala-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floral Header Accents */
.floral-header {
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.floral-header::before,
.floral-header::after {
    content: '✻';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.floral-header::before {
    left: 0;
}

.floral-header::after {
    right: 0;
}

/* Luxury Card */
.luxury-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.luxury-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.luxury-card:hover::after {
    transform: scaleX(1);
}

/* Text Utilities */
.text-gold {
    color: var(--gold-primary) !important;
}

.bg-gold {
    background-color: var(--gold-primary) !important;
    color: #fff;
}

.text-royal {
    color: var(--royal-red);
}

/* Animation Classes (GSAP Compatible) */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Specific Section Styles */
.wedding-theme-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.luxury-card:hover .wedding-theme-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-step {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}
