/* PREMIUM 3D & LUXE STYLES - VERSION 2.0 (Light Theme) */

:root {
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-glow: rgba(255, 255, 255, 0.6);
    --primary-luxe: #A22525;
    --accent-luxe: #FFB800;
    --heading-dark: #1A1A1A;
}

/* Fix for letter cut-off (y, g, p) */
.gs-reveal-text span {
    display: inline-block;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
    line-height: 1.1;
}

/* Full Page Premium Mesh Aura */
body {
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, hsla(0, 63%, 39%, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(43, 100%, 50%, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 50%, hsla(0, 0%, 100%, 1) 0px, transparent 100%),
        radial-gradient(at 0% 100%, hsla(0, 63%, 39%, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(43, 100%, 50%, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
    background-size: 200% 200%;
    animation: meshMovement 20s ease infinite alternate;
}

@keyframes meshMovement {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Custom Cursor */
.custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--primary-luxe);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary-luxe);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease-out;
}

/* Fixed 3D Canvas Container */
#three-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Ultra-Gloss Glass Cards (Enhanced) */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.03),
        inset 0 0 30px var(--glass-glow);
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll {
    will-change: transform, opacity, filter;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(162, 37, 37, 0.25);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 70px rgba(162, 37, 37, 0.12);
}

/* LUXURY STUDIO CTA (V7 - Centered & Premium) */
.cta-luxury-studio {
    background: linear-gradient(165deg, #FFFDF7 0%, #F8F9FA 100%);
    border: 1px solid rgba(255, 184, 0, 0.15); /* Ultra-fine gold border */
    border-radius: 60px;
    position: relative;
    overflow: visible; /* Allow phone to breathe */
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 184, 0, 0.03) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(162, 37, 37, 0.02) 0, transparent 50%);
}

.cta-luxury-studio::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.4), transparent, rgba(162, 37, 37, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-btn-apple, .cta-btn-google {
    background: #000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-apple:hover, .cta-btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-luxe);
}

/* Testimonial Specific Luxe Glow */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Navigation & Global Overrides */
.glass-header {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Utility to remove white backgrounds from sections */
.bg-transparent-luxe {
    background-color: transparent !important;
}

/* Animations Fix */
.gs-reveal-text {
    color: var(--heading-dark) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* SplitText Emergence container */
.reveal-container {
    overflow: hidden;
}
