/* 
 * Velvet Lantern Club - Core CSS Stylesheet
 * Elegant, Magical, Dark Fantasy Luxury UI
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-dark: #140A1F; /* Dark velvet background */
    --purple-deep: #2B0A3D; /* Deep purple */
    --purple-royal: #5D2E8C; /* Royal purple */
    --gold-primary: #D4A24C; /* Gold */
    --gold-warm: #FFCC66; /* Warm candle gold */
    --text-light: #F8F5FC;
    --text-muted: #B8A6C9;
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(43, 10, 61, 0.4);
    --glow-purple: 0 0 20px rgba(93, 46, 140, 0.6);
    --glow-gold: 0 0 15px rgba(212, 162, 76, 0.4);
    
    --font-heading: 'Cinzel Decorative', Georgia, serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

/* Luxury Contrast Visibility Fixes */
.text-muted {
    color: var(--text-muted) !important;
}

.text-gold {
    color: var(--gold-primary) !important;
}


body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(93, 46, 140, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(43, 10, 61, 0.2) 0%, transparent 50%);
}

/* Background Velvet Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(20, 10, 31, 0.85) 60%, rgba(43, 10, 61, 0.95) 100%);
    z-index: -3;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--purple-deep);
    border: 2px solid var(--bg-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--purple-royal);
    box-shadow: var(--glow-purple);
}

/* Floating Particles Container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--gold-warm) 0%, rgba(212, 162, 76, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 12s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-10vh) translateX(100px) scale(1.2);
        opacity: 0;
    }
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 162, 76, 0.3);
    letter-spacing: 2px;
}

.font-serif {
    font-family: var(--font-serif);
}

.gold-text-glow {
    color: var(--gold-warm);
    text-shadow: 0 0 8px rgba(255, 204, 102, 0.6), 0 0 20px rgba(214, 162, 76, 0.3);
}

/* Custom Navigation Bar */
.navbar {
    background: rgba(20, 10, 31, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 162, 76, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 1.2rem 1rem;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.8rem 1rem;
    background: rgba(20, 10, 31, 0.95);
    border-bottom: 1px solid rgba(212, 162, 76, 0.35);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary) !important;
    text-shadow: 0 0 10px rgba(212, 162, 76, 0.5);
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    color: var(--gold-warm) !important;
    text-shadow: 0 0 18px rgba(255, 204, 102, 0.9);
}

.nav-link {
    font-family: var(--font-sans);
    color: var(--text-light) !important;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--gold-warm) !important;
    text-shadow: 0 0 8px rgba(255, 204, 102, 0.5);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold-warm) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(20, 10, 31, 0.4) 0%, rgba(20, 10, 31, 0.9) 100%);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 40%, rgba(93, 46, 140, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 204, 102, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

/* Beautiful Elegant Borders */
.gold-border-box {
    border: 2px solid var(--gold-primary);
    position: relative;
    padding: 3rem;
    background: rgba(43, 10, 61, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-premium), inset 0 0 20px rgba(93, 46, 140, 0.3);
    border-radius: 4px;
}

/* Decorative corner pieces for gold border box */
.gold-border-box::before, .gold-border-box::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid var(--gold-warm);
    z-index: 3;
}

.gold-border-box::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.gold-border-box::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

.gold-corner-tr, .gold-corner-bl {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid var(--gold-warm);
    z-index: 3;
}

.gold-corner-tr {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
}

.gold-corner-bl {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
}

/* Buttons */
.btn-premium {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-royal) 100%);
    border: 1px solid var(--gold-primary);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(93, 46, 140, 0.4), 0 0 10px rgba(212, 162, 76, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 102, 0.4), transparent);
    transition: 0.6s;
    z-index: -1;
}

.btn-premium:hover {
    color: var(--bg-dark);
    background: var(--gold-warm);
    border-color: var(--gold-warm);
    box-shadow: 0 0 25px rgba(255, 204, 102, 0.8), 0 0 10px rgba(93, 46, 140, 0.4);
    transform: translateY(-3px);
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:active {
    transform: translateY(-1px);
}

/* Glassmorphism Velvet Cards */
.velvet-card {
    background: rgba(43, 10, 61, 0.4);
    border: 1px solid rgba(212, 162, 76, 0.15);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    z-index: 1;
}

.velvet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(93, 46, 140, 0.2) 0%, transparent 60%);
    z-index: -1;
    transition: var(--transition-smooth);
}

.velvet-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 162, 76, 0.6);
    box-shadow: 0 15px 40px rgba(93, 46, 140, 0.4), 0 0 20px rgba(212, 162, 76, 0.2);
}

.velvet-card:hover::before {
    background: radial-gradient(circle at top right, rgba(255, 204, 102, 0.15) 0%, rgba(93, 46, 140, 0.3) 70%);
}

.velvet-card .card-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(212, 162, 76, 0.4));
    transition: var(--transition-smooth);
}

.velvet-card:hover .card-icon {
    color: var(--gold-warm);
    filter: drop-shadow(0 0 12px rgba(255, 204, 102, 0.8));
    transform: scale(1.1);
}

/* Section Header Styles */
.section-title-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    bottom: 0;
    left: 20%;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Lantern and Candle Animations */
.lantern-glow-container {
    position: relative;
}

.lantern-glow-container::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 204, 102, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    animation: candleFlicker 3s infinite alternate;
}

@keyframes candleFlicker {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05) rotate(1deg);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.98) rotate(-1deg);
    }
}

.candle-glow-card {
    position: relative;
}

.candle-glow-card::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 16px;
    background: linear-gradient(45deg, transparent, rgba(255, 204, 102, 0.1), transparent);
    z-index: -2;
    transition: var(--transition-smooth);
}

.candle-glow-card:hover::after {
    background: linear-gradient(45deg, rgba(93, 46, 140, 0.2), rgba(255, 204, 102, 0.2), rgba(93, 46, 140, 0.2));
    filter: blur(10px);
}

/* Page Headers */
.page-header {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(43, 10, 61, 0.7) 50%, var(--bg-dark) 100%);
    padding: 120px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 162, 76, 0.15);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 80%, rgba(93, 46, 140, 0.3) 0%, transparent 60%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Forms styling (Booking/Checkout) */
.premium-form .form-label {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.premium-form .form-control, .premium-form .form-select {
    background: rgba(20, 10, 31, 0.7);
    border: 1px solid rgba(212, 162, 76, 0.3);
    border-radius: 6px;
    color: var(--text-light);
    padding: 0.8rem 1.2rem;
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.premium-form .form-control:focus, .premium-form .form-select:focus {
    background: rgba(43, 10, 61, 0.9);
    border-color: var(--gold-warm);
    outline: none;
    box-shadow: 0 0 12px rgba(255, 204, 102, 0.3), inset 0 0 5px rgba(93, 46, 140, 0.5);
    color: var(--text-light);
}

.premium-form .form-control::placeholder {
    color: rgba(184, 166, 201, 0.7);
}

.premium-form select option {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Booking summary and receipt style */
.checkout-summary {
    background: linear-gradient(135deg, rgba(43, 10, 61, 0.5) 0%, rgba(20, 10, 31, 0.8) 100%);
    border: 1.5px solid var(--gold-primary);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.checkout-summary::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(212, 162, 76, 0.3);
    border-radius: 8px;
    pointer-events: none;
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 162, 76, 0.15);
}

.checkout-row:last-child {
    border-bottom: none;
}

.checkout-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-warm);
    text-shadow: 0 0 10px rgba(255, 204, 102, 0.4);
}

/* Payment Method radio designs */
.payment-card {
    background: rgba(20, 10, 31, 0.6);
    border: 1px solid rgba(212, 162, 76, 0.25);
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.payment-card:hover {
    border-color: var(--gold-primary);
    background: rgba(43, 10, 61, 0.5);
}

.payment-card input[type="radio"] {
    display: none;
}

.payment-card .radio-dot {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    transition: var(--transition-smooth);
}

.payment-card input[type="radio"]:checked + .radio-dot::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--gold-warm);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--gold-warm);
}

.payment-card input[type="radio"]:checked ~ span {
    color: var(--gold-warm);
    font-weight: 600;
}

.payment-card.active {
    border-color: var(--gold-warm);
    background: rgba(93, 46, 140, 0.25);
    box-shadow: var(--glow-purple);
}

/* Custom Footer */
.footer {
    background: #0d0615;
    border-top: 1px solid rgba(212, 162, 76, 0.25);
    padding: 5rem 0 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--gold-primary) !important;
    font-size: 1.8rem;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(212, 162, 76, 0.4);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
}

.footer-title {
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-warm);
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(255, 204, 102, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 162, 76, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    color: rgba(184, 166, 201, 0.5);
    font-size: 0.85rem;
}

/* Animations classes */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Extra premium touch */
.quote-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.quote-author {
    font-family: var(--font-sans);
    color: var(--gold-primary);
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Customizations */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .gold-border-box {
        padding: 1.5rem;
    }
    
    .btn-premium {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }
    
    .page-header {
        padding: 100px 0 40px 0;
    }
}

/* ==========================================================================
   PREMIUM STORYBOOK / OPEN BOOK LAYOUT (booking.php)
   ========================================================================== */

.velvet-book-container {
    perspective: 1500px;
    margin: 2rem auto;
}

.velvet-open-book {
    display: flex;
    background: #0f0617;
    border-radius: 12px;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.8),
        0 10px 30px rgba(43, 10, 61, 0.6),
        inset 0 0 40px rgba(93, 46, 140, 0.2);
    border: 3px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
    min-height: 750px;
}

/* Book spine divide line */
.velvet-open-book::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        var(--gold-primary) 30%, 
        var(--gold-warm) 50%, 
        var(--gold-primary) 70%, 
        rgba(0, 0, 0, 0.7) 100%);
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.4);
    z-index: 10;
}

/* Left Page - The Luxury Book Cover matching reference image */
.book-page-left {
    flex: 1;
    background: linear-gradient(135deg, #1b0a29 0%, #0c0414 100%);
    position: relative;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(212, 162, 76, 0.2);
    overflow: hidden;
}

/* Left page purple magical mist background */
.book-page-left::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 30%, rgba(93, 46, 140, 0.45) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    animation: purpleMistShift 8s infinite alternate ease-in-out;
}

@keyframes purpleMistShift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 0.9;
    }
}

.book-cover-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 420px;
    border: 1.5px solid var(--gold-primary);
    padding: 3rem 2rem;
    border-radius: 8px;
    background: rgba(20, 10, 31, 0.65);
    box-shadow: inset 0 0 30px rgba(93, 46, 140, 0.3);
}

.book-cover-inner::before, .book-cover-inner::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-warm);
}

.book-cover-inner::before {
    top: -4px;
    left: -4px;
    border-right: none;
    border-bottom: none;
}

.book-cover-inner::after {
    bottom: -4px;
    right: -4px;
    border-left: none;
    border-top: none;
}

/* Central glowing lantern emblem from reference image */
.book-lantern-emblem {
    width: 140px;
    height: 140px;
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, var(--purple-royal) 0%, #1c0b2d 80%);
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 
        0 0 25px rgba(93, 46, 140, 0.6),
        inset 0 0 15px rgba(255, 204, 102, 0.3);
    animation: emblemPulse 4s infinite alternate;
}

@keyframes emblemPulse {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 20px rgba(93, 46, 140, 0.5), inset 0 0 10px rgba(255, 204, 102, 0.2);
    }
    100% {
        transform: scale(1.02);
        box-shadow: 0 0 35px rgba(93, 46, 140, 0.8), inset 0 0 25px rgba(255, 204, 102, 0.5);
    }
}

.book-lantern-emblem i {
    font-size: 4.5rem;
    color: var(--gold-warm);
    filter: drop-shadow(0 0 15px rgba(255, 204, 102, 0.8));
    animation: lanternLightFlicker 2.5s infinite alternate;
}

@keyframes lanternLightFlicker {
    0% {
        opacity: 0.85;
        transform: scale(0.96) rotate(-0.5deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.04) rotate(0.5deg);
    }
    100% {
        opacity: 0.9;
        transform: scale(0.98) rotate(0deg);
    }
}

/* Right Page - The Vintage Scroll Form */
.book-page-right {
    flex: 1;
    background: linear-gradient(135deg, #180924 0%, #1c0a2a 100%);
    position: relative;
    padding: 4rem 3.5rem;
    overflow: hidden;
}

.book-page-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 204, 102, 0.05) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.book-form-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Ink quill and seal graphics decoration */
.book-decorations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0.85;
}

.book-decorations i {
    color: var(--gold-primary);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(212, 162, 76, 0.4));
    transition: var(--transition-smooth);
}

.book-decorations i:hover {
    color: var(--gold-warm);
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 10px rgba(255, 204, 102, 0.7));
}

/* Mobile responsive Open Book adjustments */
@media (max-width: 991px) {
    .velvet-open-book {
        flex-direction: column;
        min-height: auto;
    }
    
    .velvet-open-book::after {
        width: 100%;
        height: 6px;
        top: auto;
        bottom: 50%;
        left: 0;
        transform: translateY(50%);
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            var(--gold-primary) 30%, 
            var(--gold-warm) 50%, 
            var(--gold-primary) 70%, 
            rgba(0, 0, 0, 0.7) 100%);
    }
    
    .book-page-left {
        border-right: none;
        border-bottom: 3px solid var(--gold-primary);
        padding: 3rem 2rem;
    }
    
    .book-page-right {
        padding: 3rem 2rem;
    }
}

/* Premium Card Image Showcase classes */
.card-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(212, 162, 76, 0.25);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.card-image-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.velvet-card:hover .card-image-wrap img {
    transform: scale(1.08);
}

.velvet-card:hover .card-image-wrap {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.4);
}


