.elementor-2409 .elementor-element.elementor-element-1f77b92{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e6d92a6 *//* =========================================
   1. CORE VARIABLES (Palette)
   ========================================= */
:root {
    --maroon-deep: #4a0404;
    --maroon-vibrant: #78001b; 
    --gold-soft: #d4af37;
    --bg-tint: #fffbfb;
    --glass-surface: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.9);
    --shadow-luxury: 0 30px 60px -12px rgba(74, 4, 4, 0.15);
}

/* =========================================
   2. GLOBAL RESET & BASE
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-tint);
    color: #2c2c2c;
    font-family: 'Manrope', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   3. ANIMATED LUXURY BACKGROUND
   ========================================= */
.background-layer {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden; background: #fff;
}

.orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.4;
    will-change: transform; /* Performance optimization */
    animation: float-motion 25s infinite alternate ease-in-out;
}

.orb-1 { /* Maroon */
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--maroon-deep), transparent 70%);
    top: -15%; left: -15%;
}

.orb-2 { /* Rose Gold */
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, #d48c98, transparent 70%);
    bottom: -15%; right: -15%; animation-delay: -5s;
}

.orb-3 { /* Gold Accent */
    width: 30vw; height: 30vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 60%);
    top: 40%; left: 30%; animation: pulse 15s infinite ease-in-out;
}

.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.04; z-index: -1; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* =========================================
   4. SHARED LAYOUT COMPONENTS
   ========================================= */
.page-container {
    display: flex; flex-direction: column; align-items: center;
    margin: 0 auto;
    position: relative;
}

/* Header Styling */
header {
    text-align: center;
    animation: fadeDown 1s ease-out;
}

.pill-badge {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(74, 4, 4, 0.1);
    background: rgba(255,255,255,0.6);
    border-radius: 50px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--maroon-vibrant);
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

h1 {
    font-family: 'Playfair Display', serif;
    color: var(--maroon-deep);
    line-height: 1.1; font-weight: 500;
}

h1 span {
    display: block; font-style: italic;
    color: var(--maroon-vibrant); font-weight: 400; opacity: 0.9;
}

/* The Glass Card */
.glass-card {
    background: var(--glass-surface);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
    width: 100%;
    opacity: 0; /* for animation */
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
}

.iframe-wrapper {
    background: #fff;
    width: 100%;
    overflow: hidden;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

footer {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    color: var(--maroon-deep); opacity: 0.6;
    text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px;
}
.sep-line { height: 1px; width: 30px; background: var(--maroon-deep); opacity: 0.4; }

/* =========================================
   5. DEVICE SPECIFIC OPTIMIZATIONS (MEDIA QUERIES)
   ========================================= */

/* --- A. DESKTOP VIEW (Default > 1024px) --- */
@media (min-width: 1025px) {
    .page-container { padding: 50px 20px; max-width: 1200px; }
    header { margin-bottom: 50px; margin-top: 20px; }
    h1 { font-size: 4rem; letter-spacing: -1px; }
    h1 span { font-size: 2.8rem; margin-top: 5px; }
    
    .glass-card {
        max-width: 740px;
        border-radius: 32px;
        padding: 12px;
    }
    .iframe-wrapper { border-radius: 22px; }
    iframe { min-height: 1700px; }
    footer { margin-top: 60px; }
}

/* --- B. iPAD / TABLET VIEW (768px - 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .page-container { padding: 40px 30px; }
    
    header { margin-bottom: 40px; }
    
    h1 { font-size: 3.2rem; }
    h1 span { font-size: 2.2rem; }
    
    .glass-card {
        max-width: 85%; /* Wider card for tablets */
        border-radius: 24px;
        padding: 10px;
    }
    
    .iframe-wrapper { border-radius: 18px; }
    
    /* Tablet form height adjustment */
    iframe { min-height: 1750px; } 
    
    .orb { opacity: 0.3; } /* Slightly reduce background distraction */
}

/* --- C. MOBILE VIEW (< 768px) --- */
@media (max-width: 767px) {
    body { overflow-x: hidden; }
    
    .page-container { padding: 25px 15px; }
    
    header { margin-bottom: 30px; margin-top: 10px; }
    
    .pill-badge { font-size: 0.65rem; padding: 6px 16px; }
    
    h1 { font-size: 2.4rem; letter-spacing: -0.5px; }
    h1 span { font-size: 1.6rem; margin-top: 2px; }
    
    .glass-card {
        width: 100%;
        border-radius: 20px;
        padding: 6px; /* Minimize padding to maximize screen space */
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .iframe-wrapper { border-radius: 16px; }
    
    /* IMPORTANT: Mobile forms stack vertically, so they need more height */
    iframe { min-height: 1950px; }
    
    /* Mobile Footer */
    footer { margin-top: 40px; flex-direction: column; gap: 10px; }
    .sep-line { display: none; }
    
    /* Optimize animations for mobile battery life */
    .orb { filter: blur(60px); animation-duration: 40s; }
}

/* =========================================
   6. ANIMATION KEYFRAMES
   ========================================= */
@keyframes float-motion {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.15); }
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }/* End custom CSS */