/* DJ Bob Carpenter - consolidated stylesheet (scoped per page) */
/* Global anti-horizontal-scroll guard */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
/* Prevent media from forcing sideways scroll */
img, video, iframe, svg, canvas { max-width: 100%; }

/* Shared animations */
@keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

@keyframes gradientText {
            to { background-position: 200% center; }
        }

@keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

@keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

@keyframes slideInGlow {
            from {
                opacity: 0;
                transform: translateY(-12px);
                box-shadow: 0 0 0 rgba(153, 69, 255, 0);
            }
            to {
                opacity: 1;
                transform: translateY(0);
                box-shadow: 0 10px 30px rgba(153, 69, 255, 0.15);
            }
        }

@keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

@keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }

@keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

@keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-30px) rotate(90deg); }
            50% { transform: translateY(0) rotate(180deg); }
            75% { transform: translateY(30px) rotate(270deg); }
        }

@keyframes fadeIn {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

@keyframes pulse {
            0%, 100% { opacity: 1; width: 50px; }
            50% { opacity: 0.5; width: 70px; }
        }

@keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

/* ===== Page: dj-bob-carpenter-pricing-ri-ma (dj-bob-carpenter-pricing-ri-ma.php) ===== */
body.page-dj-bob-carpenter-pricing-ri-ma{
            --brand-pink: #ec4899;
            --brand-pink-dark: #db2777;
            --brand-purple: #8b5cf6;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            --gradient-3: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
        }

        body.page-dj-bob-carpenter-pricing-ri-ma{ scroll-behavior: smooth; }

        body.page-dj-bob-carpenter-pricing-ri-ma{
            font-family: 'Arimo', sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }

        @media (prefers-reduced-motion: reduce) {
            body.page-dj-bob-carpenter-pricing-ri-ma *{ 
                animation-duration: 0.001ms !important; 
                transition-duration: 0.001ms !important; 
                scroll-behavior: auto !important; 
            }
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Typography */
        h1, body.page-dj-bob-carpenter-pricing-ri-ma h2, body.page-dj-bob-carpenter-pricing-ri-ma h3{
            font-family: 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.2px;
            color: var(--grey-dark);
            margin-bottom: 1rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma h1{ 
            font-size: clamp(2rem, 3.6vw, 3rem); 
            font-weight: 800; 
            line-height: 1.05; 
        }

        body.page-dj-bob-carpenter-pricing-ri-ma h2{ 
            font-size: clamp(1.5rem, 2.6vw, 2rem); 
            font-weight: 700; 
            line-height: 1.2; 
        }

        body.page-dj-bob-carpenter-pricing-ri-ma h3{ 
            font-size: clamp(1.25rem, 2vw, 1.5rem); 
            font-weight: 700; 
        }

        body.page-dj-bob-carpenter-pricing-ri-ma p, body.page-dj-bob-carpenter-pricing-ri-ma li{ 
            font-size: clamp(1rem, 1.2vw, 1.0625rem); 
            line-height: 1.7; 
            margin-bottom: 1rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Hero Section - Fixed gap */
        .hero-section{
            position: relative;
            width: 100%;
            height: 60vh;
            overflow: hidden;
            background: #000;
            margin-top: 0; /* Remove gap with navigation */
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .hero-image{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .hero-overlay{
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 2rem 1rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .hero-overlay h1{
            color: #fff !important;
            margin-bottom: 1rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Pricing Sections with Alternating Backgrounds */
        .pricing-section{
            padding: 4rem 2rem;
            margin-inline: auto;
            max-width: 1200px;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .pricing-section:nth-child(even){
            background: var(--gradient-2);
            border-radius: 24px;
            margin: 2rem auto;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .pricing-section:nth-child(odd):not(:first-child){
            background: var(--gradient-3);
            border-radius: 24px;
            margin: 2rem auto;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Category Title */
        .category-title{
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            display: inline-block;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: var(--grey-dark);
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .category-title::after{
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100px;
            height: 4px;
            border-radius: 999px;
            background: var(--gradient-1);
            opacity: 0.8;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Package Cards */
        .package-category{
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            align-items: stretch;
            margin-top: 2rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-category > h2.category-title, body.page-dj-bob-carpenter-pricing-ri-ma .package-category > p{
            grid-column: 1 / -1;
            text-align: center;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-card{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: var(--surface);
            border-radius: 20px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            padding: 2rem;
            transition: all 0.3s ease;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-card:hover{
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Featured Package */
        .package-card.featured{
            background: var(--gradient-2);
            border: 2px solid var(--brand-purple);
            transform: scale(1.02);
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-card.featured .package-name::after{
            content: "⭐ Most Popular";
            display: block;
            font-size: 0.75rem;
            color: var(--brand-purple);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.5rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-price{
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--brand-purple);
            margin-bottom: 0.5rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-savings{
            font-weight: 600;
            color: #059669;
            background: #d1fae5;
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-name{
            font-weight: 800;
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            color: var(--grey-dark);
            margin-bottom: 0.5rem;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-description{
            margin: 1rem 0 0;
            padding: 0;
            list-style: none;
            flex-grow: 1;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-description li{
            margin: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--ink);
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .package-description li::before{
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--brand-purple);
            font-weight: bold;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Extras List */
        .extras-list{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .extras-list li{
            background: var(--surface);
            border: 1px solid var(--grey-light);
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .extras-list li:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Call to Action */
        .cta-section{
            background: var(--gradient-3);
            padding: 4rem 2rem;
            border-radius: 24px;
            margin: 2rem auto;
            max-width: 1200px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .cta-section h2{
            color: #ffffff; /* White for high contrast */
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .cta-section p{
            color: #e5e7eb; /* Lighter text for readability */
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Buttons */
        .btn-contact{
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            background: var(--brand-purple);
            color: #ffffff;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
            transition: all 0.2s ease;
            font-family: 'Alegreya Sans SC', sans-serif;
            min-height: 48px;
            touch-action: manipulation;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .btn-contact:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
            background: var(--brand-pink-dark);
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .btn-contact:focus-visible{
            outline: 2px solid var(--brand-purple);
            outline-offset: 2px;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Responsive */
        @media (max-width: 768px){
            .hero-section {
                height: 50vh;
            }

            .pricing-section {
                padding: 2rem 1rem;
            }

            .package-category, .extras-list {
                grid-template-columns: 1fr;
            }

            .category-title {
                font-size: 1.8rem;
            }

            .package-price {
                font-size: 2rem;
            }

            .btn-contact {
                width: 100%;
                padding: 1.25rem;
                min-height: 56px;
            }

            .cta-section {
                padding: 2rem 1rem;
            }
        }

        body.page-dj-bob-carpenter-pricing-ri-ma /* Accessibility */
        .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: 10000;
        }

        body.page-dj-bob-carpenter-pricing-ri-ma .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: #fff;
            padding: 12px 16px;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            text-decoration: none;
            font-weight: 600;
        }

/* ===== Page: home (index.php) ===== */
body.page-home{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
        }

        body.page-home{ scroll-behavior: smooth; }
        body.page-home{
            font-family: 'Arimo', sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
            position: relative;
            overflow-x: hidden;
        }

        body.page-home /* Animated gradient background */
        body::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(236, 72, 153, 0.03) 0%, 
                rgba(153, 69, 255, 0.03) 25%, 
                rgba(0, 212, 255, 0.03) 50%, 
                rgba(255, 16, 240, 0.03) 75%, 
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }

        

        @media (prefers-reduced-motion: reduce) {
            body.page-home *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
        }

        body.page-home /* Typography with futuristic touch */
        h1, body.page-home h2, body.page-home h3{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
            position: relative;
        }
        body.page-home h1{ 
            font-size: clamp(2rem, 3.6vw, 3rem); 
            font-weight: 900; 
            line-height: 1.05;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }
        
        body.page-home h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.2; }
        body.page-home h3{ font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
        body.page-home p, body.page-home li{ font-size: clamp(1rem, 1.2vw, 1.0625rem); line-height: 1.7; }

        body.page-home /* Hero Video Section with futuristic overlay */
        .hero-video{
            position: relative;
            width: 100%;
            height: 36rem;
            overflow: hidden;
            margin-top: 0;
            background: #000;
        }
        body.page-home .hero-video-wrap{
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #000;
        }
        
        body.page-home .hero-video-iframe{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }
        @media (orientation: landscape) {
            body.page-home .hero-video-iframe{ width: 100vw; height: 56.25vw; min-width: 100%; min-height: 100%; }
        }
        @media (orientation: portrait) {
            body.page-home .hero-video-iframe{ width: 177.78vh; height: 100vh; min-width: 100%; min-height: 100%; }
        }
        @supports not (aspect-ratio: 16 / 9) {
            body.page-home .hero-video-iframe{ min-width: 100%; min-height: 100%; }
        }
        body.page-home .hero-overlay{
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 1rem;
            transition: all 1s ease;
        }
        body.page-home .hero-overlay h1{
            color: #fff !important;
        }

        body.page-home /* Fade-in Animation */
        
        .fade-in{
            animation: fadeIn 1s ease-out forwards;
        }

        body.page-home /* Glassmorphism Services Grid */
        .services-grid{
            display: grid;
            gap: 2rem;
        }
        @media (min-width: 768px) {
            body.page-home .services-grid{
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 767px) {
            body.page-home .services-grid{
                grid-template-columns: 1fr;
            }
        }
        body.page-home .service-card{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
            position: relative;
        }
        body.page-home .service-card::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0) 0%, 
                rgba(0, 212, 255, 0) 100%);
            transition: all 0.4s ease;
            z-index: -1;
        }
        body.page-home .service-card:hover{
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
        }
        body.page-home .service-card:hover::before{
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0.1) 0%, 
                rgba(0, 212, 255, 0.1) 100%);
        }
        body.page-home .service-card img, body.page-home .service-card video{
            width: 100%;
            height: auto;
            transition: transform 0.4s ease;
            display: block;
        }
        body.page-home .service-card:hover img, body.page-home .service-card:hover video{
            transform: scale(1.08);
        }
        body.page-home .service-card-content{
            padding: 1.5rem;
            background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 0.9), 
                rgba(255, 255, 255, 0.7));
        }
        body.page-home .service-card h3{
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.page-home /* Futuristic Google Reviews Carousel */
        .reviews-carousel{
            position: relative;
            max-width: 800px;
            margin: 2rem auto;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        }
        body.page-home .reviews-container{
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 16px;
            will-change: transform;
        }
        body.page-home .review-slide{
            flex: 0 0 calc((100% - 32px) / 3);
            padding: 1.5rem;
            text-align: center;
            min-height: 200px;
            box-sizing: border-box;
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.05) 0%, 
                rgba(240, 147, 251, 0.05) 100%);
            border-radius: 15px;
            margin: 10px 0;
        }
        @media (max-width: 768px) {
            body.page-home .review-slide{
                flex: 0 0 100%;
            }
        }
        body.page-home .review-header{
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }
        body.page-home .review-platform{
            font-weight: bold;
            background: linear-gradient(90deg, #4285f4, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 0.5rem;
        }
        body.page-home .star-rating{
            color: #ffd700;
            font-size: 1rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        body.page-home .review-author{
            font-style: italic;
            color: var(--grey-dark);
            margin-top: 0.5rem;
        }

        body.page-home /* Map Embed with glow effect */
        .map-embed{
            width: 100%;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
            border: 2px solid rgba(0, 212, 255, 0.2);
        }
        body.page-home .map-embed iframe, body.page-home .video-frame iframe{
            display: block;
            width: 100%;
            height: 100%;
        }

        body.page-home .video-frame{
            position: relative;
            padding-bottom: 0;
            height: 300px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(255, 16, 240, 0.3);
            border: 2px solid rgba(255, 16, 240, 0.2);
        }
        body.page-home .video-frame iframe{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        body.page-home /* Content Containers */
        .content-container{
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        body.page-home .content-section{
            padding: 3rem 1rem;
            position: relative;
        }

        body.page-home /* Gradient backgrounds for sections */
        .content-section:nth-child(even){
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.05) 0%, 
                rgba(118, 75, 162, 0.05) 100%);
        }

        body.page-home /* Portrait Photo with glow */
        .portrait-photo{
            max-width: 400px;
            width: 100%;
            height: auto;
            box-shadow: 0 0 40px rgba(153, 69, 255, 0.3);
            transition: all 0.4s ease;
        }
        body.page-home .portrait-photo:hover{
            box-shadow: 0 0 60px rgba(255, 16, 240, 0.5);
            transform: scale(1.02);
        }

        body.page-home /* Futuristic Buttons */
        .btn-primary{
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            border: none;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
        }
        body.page-home .btn-primary::before{
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            transition: left 0.5s ease;
        }
        body.page-home .btn-primary:hover::before{
            left: 100%;
        }
        body.page-home .btn-primary:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                        0 0 40px rgba(255, 16, 240, 0.3);
        }
        body.page-home .btn-primary:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 3px;
        }

        @media (prefers-color-scheme: dark) {
            body.page-home{ background: #0b1220; color: #e5e7eb; }
            body.page-home .service-card{ background: rgba(15, 23, 42, 0.8); border-color: rgba(31, 41, 55, 0.5); }
            body.page-home .reviews-carousel{ background: rgba(15, 23, 42, 0.8); }
        }

        body.page-home .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        body.page-home .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: #fff;
            padding: 8px 12px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            z-index: 9999;
        }
        
        body.page-home /* Mobile adjustments */
        @media (max-width: 640px){
            .hero-overlay h1 {
                font-size: 1.75rem;
            }
            .hero-overlay p {
                font-size: 1rem;
            }
            .hero-video {
                height: 24rem;
            }
        }

        body.page-home /* FUTURISTIC AVAILABILITY CHECKER STYLES */
        .availability-card{
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(153, 69, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        body.page-home .availability-card::before{
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(255, 16, 240, 0.05), 
                transparent, 
                rgba(0, 212, 255, 0.05), 
                transparent);
            animation: shimmer 3s linear infinite;
        }
        
        
        body.page-home /* Section Labels */
        .section-label{
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-family: 'Orbitron', sans-serif;
        }
        
        body.page-home /* Service Pills with gradient borders */
        .services-container{
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            position: relative;
            z-index: 1;
        }
        
        body.page-home .service-pill{
            padding: 0.875rem 1.5rem;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid transparent;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.9375rem;
            font-weight: 500;
            color: #374151;
            position: relative;
            overflow: hidden;
            background-clip: padding-box;
        }
        body.page-home .service-pill::before{
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 999px;
            padding: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.3;
            transition: opacity 0.3s ease;
        }
        
        body.page-home .service-pill:hover{
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(153, 69, 255, 0.2);
        }
        body.page-home .service-pill:hover::before{
            opacity: 1;
        }
        
        body.page-home .service-pill.selected{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
        }
        
        body.page-home /* Futuristic Date Inputs */
        .date-row{
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }
        
        body.page-home .date-input{
            padding: 1rem;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 12px;
            font-size: 0.9375rem;
            color: #000;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            transition: all 0.3s ease;
            font-family: 'Orbitron', sans-serif;
            font-weight: 500;
        }
        
        body.page-home .date-input:hover:not(:disabled){
            border-color: rgba(153, 69, 255, 0.5);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 20px rgba(153, 69, 255, 0.2);
        }
        
        body.page-home .date-input:focus{
            outline: none;
            border-color: rgba(255, 16, 240, 0.5);
            box-shadow: 0 0 30px rgba(255, 16, 240, 0.3);
        }
        
        body.page-home .date-input:disabled{
            background: rgba(243, 244, 246, 0.5);
            color: #9ca3af;
            cursor: not-allowed;
        }
        
        body.page-home /* Ultra Modern Check Button */
        .modern-check-btn{
            padding: 1.25rem 3.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            border: none;
            border-radius: 999px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        body.page-home .modern-check-btn::before{
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        body.page-home .modern-check-btn:hover::before{
            width: 300px;
            height: 300px;
        }
        
        body.page-home .modern-check-btn:hover:not(:disabled){
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.4),
                        0 0 50px rgba(255, 16, 240, 0.3);
        }
        
        body.page-home .modern-check-btn:active:not(:disabled){
            transform: translateY(-1px) scale(1.02);
        }
        
        body.page-home .modern-check-btn:disabled{
            background: linear-gradient(135deg, #d1d5db, #9ca3af);
            cursor: not-allowed;
        }
        
        body.page-home /* Futuristic Results Container */
        .results-container{
            display: none;
            margin-top: 2rem;
            padding: 1.75rem;
            background: rgba(249, 250, 251, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(229, 231, 235, 0.5);
            animation: slideInGlow 0.4s ease;
            box-shadow: 0 10px 30px rgba(153, 69, 255, 0.15);
            position: relative;
            z-index: 1;
        }
        
        body.page-home .results-container.show{
            display: block;
        }
        
        
        
        body.page-home .results-container h3{
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Orbitron', sans-serif;
        }
        
        body.page-home .results-container p{
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }
        
        body.page-home .chat-link{
            display: inline-block;
            margin-top: 0.75rem;
            padding: 0.625rem 1.5rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            border-radius: 999px;
            transition: all 0.3s ease;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-family: 'Orbitron', sans-serif;
        }
        
        body.page-home .chat-link:hover{
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(153, 69, 255, 0.3);
        }
        
        body.page-home /* Mobile Responsive */
        @media (max-width: 768px){
            .availability-card {
                padding: 2rem;
            }
            
            .services-container {
                justify-content: center;
            }
            
            .date-row {
                grid-template-columns: 1fr;
            }
            
            .modern-check-btn {
                width: 100%;
            }
        }

        body.page-home /* FAQ Section with glassmorphism */
        details{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(153, 69, 255, 0.2);
            transition: all 0.3s ease;
        }
        body.page-home details:hover{
            box-shadow: 0 8px 20px rgba(153, 69, 255, 0.15);
            border-color: rgba(255, 16, 240, 0.3);
        }
        body.page-home details[open]{
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 10px 30px rgba(153, 69, 255, 0.2);
        }
        body.page-home details summary{
            transition: color 0.3s ease;
        }
        body.page-home details:hover summary{
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.page-home /* Section backgrounds with subtle gradients */
        .py-12.bg-gray-100{
            background: linear-gradient(135deg, 
                rgba(249, 250, 251, 1) 0%, 
                rgba(229, 231, 235, 0.5) 50%, 
                rgba(249, 250, 251, 1) 100%);
            position: relative;
        }
        body.page-home .py-12.bg-gray-100::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                rgba(102, 126, 234, 0.03) 0%, 
                rgba(240, 147, 251, 0.03) 100%);
            pointer-events: none;
        }

        body.page-home /* Floating particles effect */
        
        .content-section::after{
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, 
                rgba(153, 69, 255, 0.1) 0%, 
                transparent 70%);
            border-radius: 50%;
            top: 10%;
            right: 5%;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

/* ===== Page: ri-ma-wedding-uplighting (ri-ma-wedding-uplighting.php) ===== */
body.page-ri-ma-wedding-uplighting{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        body.page-ri-ma-wedding-uplighting{ scroll-behavior: smooth; }

        body.page-ri-ma-wedding-uplighting{
            background: var(--bg);
            color: var(--grey-dark);
            -webkit-font-smoothing: antialiased;
            font-family: 'Arimo', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            position: relative;
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
        }

        body.page-ri-ma-wedding-uplighting::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg,
                rgba(236, 72, 153, 0.03) 0%,
                rgba(153, 69, 255, 0.03) 25%,
                rgba(0, 212, 255, 0.03) 50%,
                rgba(255, 16, 240, 0.03) 75%,
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }

        

        @media (prefers-reduced-motion: reduce) {
            body.page-ri-ma-wedding-uplighting *{
                animation-duration: 0.001ms !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        body.page-ri-ma-wedding-uplighting /* Typography */
        h1, body.page-ri-ma-wedding-uplighting h2, body.page-ri-ma-wedding-uplighting h3{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
        }

        body.page-ri-ma-wedding-uplighting h1{
            font-size: clamp(2rem, 3.6vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }

        

        body.page-ri-ma-wedding-uplighting h2{
            font-size: clamp(1.75rem, 2.8vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.page-ri-ma-wedding-uplighting h3{
            font-size: clamp(1.25rem, 2vw, 1.5rem);
            font-weight: 700;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.page-ri-ma-wedding-uplighting p, body.page-ri-ma-wedding-uplighting li{
            font-size: clamp(1rem, 1.2vw, 1.0625rem);
            line-height: 1.7;
        }

        body.page-ri-ma-wedding-uplighting /* Header Section */
        .header-unit{
            height: clamp(24rem, 65vh, 42rem);
            position: relative;
            overflow: hidden;
            background: #000;
        }

        body.page-ri-ma-wedding-uplighting .header-video{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100vw;
            height: 56.25vw;
            min-width: 100%;
            min-height: 100%;
        }

        @media (orientation: portrait) {
            body.page-ri-ma-wedding-uplighting .header-video{ width: 177.78vh; height: 100vh; }
        }

        body.page-ri-ma-wedding-uplighting .header-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 2rem;
            transition: all 1s ease;
        }

        body.page-ri-ma-wedding-uplighting .header-overlay h1{
            color: #fff !important;
            margin-bottom: 1rem;
        }

        body.page-ri-ma-wedding-uplighting /* Buttons */
        .btn-primary{
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
            padding: 1.25rem 2.5rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 8px 20px rgba(236,72,153,0.25);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            min-height: 48px;
            touch-action: manipulation;
        }

        body.page-ri-ma-wedding-uplighting .btn-primary::before{
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        body.page-ri-ma-wedding-uplighting .btn-primary:hover::before{
            width: 300px;
            height: 300px;
        }

        body.page-ri-ma-wedding-uplighting .btn-primary:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 28px rgba(153, 69, 255, 0.3),
                        0 0 40px rgba(255, 16, 240, 0.2);
        }

        body.page-ri-ma-wedding-uplighting .btn-primary:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 2px;
        }

        body.page-ri-ma-wedding-uplighting .btn-secondary{
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.25rem 2.5rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--grey-dark);
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 999px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            min-height: 48px;
            touch-action: manipulation;
        }

        body.page-ri-ma-wedding-uplighting .btn-secondary:hover{
            background: var(--gradient-1);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(153, 69, 255, 0.3);
        }

        body.page-ri-ma-wedding-uplighting .btn-secondary:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 2px;
        }

        body.page-ri-ma-wedding-uplighting /* Lighting Grid */
        .lighting-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        body.page-ri-ma-wedding-uplighting .lighting-card{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            transition: all 0.4s ease;
        }

        body.page-ri-ma-wedding-uplighting .lighting-card:hover{
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
        }

        body.page-ri-ma-wedding-uplighting .lighting-card img{
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        body.page-ri-ma-wedding-uplighting /* Feature Grid */
        .feature-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-ri-ma-wedding-uplighting .feature-card{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
            min-height: 150px;
        }

        body.page-ri-ma-wedding-uplighting .feature-card:hover{
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
        }

        body.page-ri-ma-wedding-uplighting /* Pricing Section */
        .pricing-section{
            padding: 4rem 1rem;
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.05) 0%,
                rgba(240, 147, 251, 0.05) 100%);
        }

        body.page-ri-ma-wedding-uplighting .pricing-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        body.page-ri-ma-wedding-uplighting .pricing-card{
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            transition: all 0.4s ease;
        }

        body.page-ri-ma-wedding-uplighting .pricing-card.featured{
            border: 2px solid var(--neon-blue); /* Changed to neon-blue for consistency */
            box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
        }

        body.page-ri-ma-wedding-uplighting .pricing-card:hover{
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
        }

        body.page-ri-ma-wedding-uplighting .popular-badge{
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 999px;
            font-size: 0.875rem;
            font-weight: bold;
            font-family: 'Orbitron', sans-serif;
        }

        body.page-ri-ma-wedding-uplighting /* FAQ and Service Areas */
        .faq-section, body.page-ri-ma-wedding-uplighting .service-areas{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        }

        body.page-ri-ma-wedding-uplighting .faq-card, body.page-ri-ma-wedding-uplighting .service-card{
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        body.page-ri-ma-wedding-uplighting .faq-card:hover, body.page-ri-ma-wedding-uplighting .service-card:hover{
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(153, 69, 255, 0.3);
        }

        body.page-ri-ma-wedding-uplighting /* CTA Section */
        .cta-section{
            background: var(--gradient-1); /* Changed from gradient-2 to gradient-1 */
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(153, 69, 255, 0.2);
        }

        body.page-ri-ma-wedding-uplighting /* Responsive */
        @media (max-width: 768px){
            .header-unit {
                height: clamp(20rem, 60vh, 30rem);
            }

            .lighting-grid, .feature-grid, .pricing-grid, .service-areas .grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .lighting-card img {
                height: 220px;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 1.5rem;
                min-height: 56px;
            }

            .pricing-section, .faq-section, .service-areas, .cta-section {
                padding: 2rem 1rem;
            }
        }

        body.page-ri-ma-wedding-uplighting /* Accessibility */
        .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: 10000;
        }

        body.page-ri-ma-wedding-uplighting .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: #fff;
            padding: 12px 16px;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            text-decoration: none;
            font-weight: 600;
        }

        body.page-ri-ma-wedding-uplighting /* Fade-in Animation */
        .fade-in{
            animation: fadeIn 1s ease-out forwards;
        }

/* ===== Page: contact-us-dj-bob-carpenter (contact-us-dj-bob-carpenter.php) ===== */
body.page-contact-us-dj-bob-carpenter{
            --primary-color: #ec4899;
            --primary-hover: #db2777;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
        }
        
        body.page-contact-us-dj-bob-carpenter{
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        body.page-contact-us-dj-bob-carpenter h1, body.page-contact-us-dj-bob-carpenter h2, body.page-contact-us-dj-bob-carpenter h3{
            font-family: 'Playfair Display', serif;
        }
        
        body.page-contact-us-dj-bob-carpenter /* Form Styling */
        .form-container{
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            padding: 2rem;
        }
        
        body.page-contact-us-dj-bob-carpenter .form-input{
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        body.page-contact-us-dj-bob-carpenter .form-input:focus{
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
        }
        
        body.page-contact-us-dj-bob-carpenter .form-label{
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        
        body.page-contact-us-dj-bob-carpenter .required-star{
            color: var(--primary-color);
        }
        
        body.page-contact-us-dj-bob-carpenter /* Contact Info Cards */
        .contact-card{
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        body.page-contact-us-dj-bob-carpenter .contact-card:hover{
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        body.page-contact-us-dj-bob-carpenter .contact-icon{
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        body.page-contact-us-dj-bob-carpenter /* Submit Button */
        .submit-btn{
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 6px -1px rgba(236, 72, 153, 0.3);
        }
        
        body.page-contact-us-dj-bob-carpenter .submit-btn:hover{
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.4);
        }
        
        body.page-contact-us-dj-bob-carpenter /* Hero Overlay */
        .hero-overlay{
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
        }
        
        body.page-contact-us-dj-bob-carpenter /* Contact Banner */
        .contact-banner{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        body.page-contact-us-dj-bob-carpenter .contact-banner::before{
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 15s ease-in-out infinite;
        }
        
        
        
        body.page-contact-us-dj-bob-carpenter /* Checkbox Styling */
        input[type="checkbox"]{
            width: 1.25rem;
            height: 1.25rem;
            cursor: pointer;
            margin-right: 0.5rem;
            accent-color: var(--primary-color);
        }
        
        body.page-contact-us-dj-bob-carpenter /* Responsive */
        @media (max-width: 768px){
            .form-container {
                padding: 1.5rem;
            }
            
            .contact-banner > div {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

/* ===== Page: ri-ma-wedding-ceremony-music (ri-ma-wedding-ceremony-music.php) ===== */
body.page-ri-ma-wedding-ceremony-music{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
        }

        body.page-ri-ma-wedding-ceremony-music{ scroll-behavior: smooth; }
        body.page-ri-ma-wedding-ceremony-music{
            font-family: 'Arimo', sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
            position: relative;
            overflow-x: hidden;
        }

        body.page-ri-ma-wedding-ceremony-music /* Animated gradient background */
        body::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(236, 72, 153, 0.03) 0%, 
                rgba(153, 69, 255, 0.03) 25%, 
                rgba(0, 212, 255, 0.03) 50%, 
                rgba(255, 16, 240, 0.03) 75%, 
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }

        

        @media (prefers-reduced-motion: reduce) {
            body.page-ri-ma-wedding-ceremony-music *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
        }

        body.page-ri-ma-wedding-ceremony-music /* Typography with futuristic touch */
        h1, body.page-ri-ma-wedding-ceremony-music h2, body.page-ri-ma-wedding-ceremony-music h3{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
            position: relative;
        }
        body.page-ri-ma-wedding-ceremony-music h1{ 
            font-size: clamp(2rem, 3.6vw, 3rem); 
            font-weight: 900; 
            line-height: 1.05;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }
        
        body.page-ri-ma-wedding-ceremony-music h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.2; }
        body.page-ri-ma-wedding-ceremony-music h3{ font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
        body.page-ri-ma-wedding-ceremony-music p, body.page-ri-ma-wedding-ceremony-music li{ font-size: clamp(1rem, 1.2vw, 1.0625rem); line-height: 1.7; }

        body.page-ri-ma-wedding-ceremony-music /* Hero Section with futuristic overlay */
        .hero-section{
            position: relative;
            width: 100%;
            height: 60vh;
            overflow: hidden;
            background: #000;
        }
        body.page-ri-ma-wedding-ceremony-music .hero-image{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        body.page-ri-ma-wedding-ceremony-music .hero-overlay{
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 1rem;
            z-index: 10;
            transition: all 1s ease;
        }
        body.page-ri-ma-wedding-ceremony-music .hero-overlay h1{
            color: #fff !important;
        }

        body.page-ri-ma-wedding-ceremony-music /* Fade-in Animation */
        
        .fade-in{
            animation: fadeIn 1s ease-out forwards;
        }

        body.page-ri-ma-wedding-ceremony-music /* Glassmorphism Pricing Grid */
        .pricing-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        body.page-ri-ma-wedding-ceremony-music .pricing-card{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
            color: inherit;
            position: relative;
        }
        body.page-ri-ma-wedding-ceremony-music .pricing-card::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0) 0%, 
                rgba(0, 212, 255, 0) 100%);
            transition: all 0.4s ease;
            z-index: -1;
        }
        body.page-ri-ma-wedding-ceremony-music .pricing-card:hover{
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
        }
        body.page-ri-ma-wedding-ceremony-music .pricing-card:hover::before{
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0.1) 0%, 
                rgba(0, 212, 255, 0.1) 100%);
        }
        body.page-ri-ma-wedding-ceremony-music .pricing-card h3{
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.page-ri-ma-wedding-ceremony-music /* Futuristic Buttons */
        .btn-primary{
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            border: none;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
        }
        body.page-ri-ma-wedding-ceremony-music .btn-primary::before{
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            transition: left 0.5s ease;
        }
        body.page-ri-ma-wedding-ceremony-music .btn-primary:hover::before{
            left: 100%;
        }
        body.page-ri-ma-wedding-ceremony-music .btn-primary:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                        0 0 40px rgba(255, 16, 240, 0.3);
        }
        body.page-ri-ma-wedding-ceremony-music .btn-primary:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 3px;
        }

        body.page-ri-ma-wedding-ceremony-music /* Video Frame with glow */
        .video-frame{
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(255, 16, 240, 0.3);
            border: 2px solid rgba(255, 16, 240, 0.2);
            max-width: 640px;
            margin: auto;
        }
        body.page-ri-ma-wedding-ceremony-music .video-frame iframe{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        body.page-ri-ma-wedding-ceremony-music /* Contact Section */
        .contact-section{
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.05) 0%, 
                rgba(118, 75, 162, 0.05) 100%);
        }

        body.page-ri-ma-wedding-ceremony-music /* Content Sections */
        .content-section{
            max-width: 1200px;
            margin: auto;
            padding: 3rem 2.5rem;
            text-align: left;
        }
        body.page-ri-ma-wedding-ceremony-music .content-section:nth-child(even){
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.05) 0%, 
                rgba(118, 75, 162, 0.05) 100%);
        }

        @media (prefers-color-scheme: dark) {
            body.page-ri-ma-wedding-ceremony-music{ background: #0b1220; color: #e5e7eb; }
            body.page-ri-ma-wedding-ceremony-music .pricing-card{ background: rgba(15, 23, 42, 0.8); border-color: rgba(31, 41, 55, 0.5); }
        }

        body.page-ri-ma-wedding-ceremony-music .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        body.page-ri-ma-wedding-ceremony-music .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: #fff;
            padding: 8px 12px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            z-index: 9999;
        }

/* ===== Page: music-suggestions (music-suggestions.php) ===== */
body.page-music-suggestions /* CSS Variables */
        :root{
            --brand-pink: #ec4899;
            --brand-pink-dark: #db2777;
            --brand-purple: #8b5cf6;
            --gray-dark: #374151;
            --gray-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
        }
        
        body.page-music-suggestions /* Base Styles */
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body.page-music-suggestions{
            scroll-behavior: smooth;
        }
        
        body.page-music-suggestions{
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
        }
        
        body.page-music-suggestions /* Typography */
        h1, body.page-music-suggestions h2, body.page-music-suggestions h3, body.page-music-suggestions h4{
            font-family: 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.2px;
            color: var(--gray-dark);
            margin-bottom: 1rem;
        }
        
        body.page-music-suggestions h1{
            font-size: clamp(2rem, 4vw, 3.5rem);
            line-height: 1.1;
            font-weight: 800;
        }
        
        body.page-music-suggestions h2{
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            line-height: 1.2;
            font-weight: 700;
        }
        
        body.page-music-suggestions h3{
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
        }
        
        body.page-music-suggestions p, body.page-music-suggestions li{
            font-size: clamp(1rem, 1.2vw, 1.125rem);
            line-height: 1.8;
        }
        
        body.page-music-suggestions /* Hero Section */
        .hero-section{
            position: relative;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            padding: 5rem 1rem 3rem;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        body.page-music-suggestions .hero-section::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }
        
        body.page-music-suggestions .hero-content{
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        body.page-music-suggestions /* Container */
        .container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        body.page-music-suggestions /* Cards */
        .card{
            background: var(--surface);
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        body.page-music-suggestions .card:hover{
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        body.page-music-suggestions /* Playlist Card */
        .playlist-card{
            background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 1rem;
            margin-bottom: 1rem;
            transition: transform 0.2s ease;
        }
        
        body.page-music-suggestions .playlist-card:hover{
            transform: scale(1.02);
        }
        
        body.page-music-suggestions /* Buttons */
        .btn{
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 999px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        body.page-music-suggestions .btn-primary{
            background: var(--brand-pink);
            color: white;
            box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
        }
        
        body.page-music-suggestions .btn-primary:hover{
            background: var(--brand-pink-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
        }
        
        body.page-music-suggestions .btn-secondary{
            background: white;
            color: var(--gray-dark);
            border: 2px solid var(--gray-light);
        }
        
        body.page-music-suggestions .btn-secondary:hover{
            background: var(--bg);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        body.page-music-suggestions /* Video Container */
        .video-container{
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            background: #000;
        }
        
        body.page-music-suggestions .video-container iframe{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        body.page-music-suggestions /* Tips Grid */
        .tips-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        body.page-music-suggestions .tip-card{
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            border-left: 4px solid var(--brand-pink);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        body.page-music-suggestions /* Spotify Section */
        .spotify-section{
            background: #f4f5f7;
            color: #374151;
            padding: 3rem;
            border-radius: 1.5rem;
            margin: 3rem 0;
            border: 1px solid #e5e7eb;
        }
        
        body.page-music-suggestions /* Skip Link */
        .skip-link{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: 10000;
        }
        
        body.page-music-suggestions .skip-link:focus{
            left: 1rem;
            top: 1rem;
            width: auto;
            height: auto;
            background: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            font-weight: 600;
            color: var(--ink);
        }
        
        body.page-music-suggestions /* Checklist */
        .checklist{
            list-style: none;
            padding: 0;
        }
        
        body.page-music-suggestions .checklist li{
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
        }
        
        body.page-music-suggestions .checklist li::before{
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--brand-pink);
            font-weight: bold;
            font-size: 1.25rem;
        }
        
        body.page-music-suggestions /* Do/Don't Grid */
        .do-dont-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        body.page-music-suggestions .do-card, body.page-music-suggestions .dont-card{
            padding: 2rem;
            border-radius: 1rem;
            color: white;
        }
        
        body.page-music-suggestions .do-card{
            background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
            border: 2px solid #10b981;
        }
        
        body.page-music-suggestions .dont-card{
            background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
            border: 2px solid #ef4444;
        }
        
        body.page-music-suggestions /* Responsive */
        @media (max-width: 768px){
            .hero-section {
                padding: 3rem 1rem 2rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .tips-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .do-dont-grid {
                grid-template-columns: 1fr;
            }
        }
        
        body.page-music-suggestions /* Animation */
        .fade-in{
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s ease forwards;
        }
        
        
        
        body.page-music-suggestions /* Feature List */
        .feature-list{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        body.page-music-suggestions .feature-item{
            display: flex;
            align-items: start;
            gap: 1rem;
        }
        
        body.page-music-suggestions .feature-icon{
            width: 40px;
            height: 40px;
            background: var(--brand-pink);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.25rem;
        }

/* ===== Page: ri-ma-audio-video-guestbook (ri-ma-audio-video-guestbook.php) ===== */
body.page-ri-ma-audio-video-guestbook{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --brand-purple: #8b5cf6;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        body.page-ri-ma-audio-video-guestbook{ scroll-behavior: smooth; }
        body.page-ri-ma-audio-video-guestbook{
            font-family: 'Arimo', sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            margin: 0;
            position: relative;
            overflow-x: hidden;
        }

        body.page-ri-ma-audio-video-guestbook /* Animated gradient background */
        body::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(236, 72, 153, 0.03) 0%, 
                rgba(153, 69, 255, 0.03) 25%, 
                rgba(0, 212, 255, 0.03) 50%, 
                rgba(255, 16, 240, 0.03) 75%, 
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }

        

        @media (prefers-reduced-motion: reduce) {
            body.page-ri-ma-audio-video-guestbook *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
        }

        body.page-ri-ma-audio-video-guestbook /* Typography with futuristic touch */
        h1, body.page-ri-ma-audio-video-guestbook h2, body.page-ri-ma-audio-video-guestbook h3{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
        }
        body.page-ri-ma-audio-video-guestbook h1{ 
            font-size: clamp(2rem, 3.6vw, 3rem); 
            font-weight: 900; 
            line-height: 1.05;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }
        
        
        
        body.page-ri-ma-audio-video-guestbook h2{ 
            font-size: clamp(1.75rem, 2.8vw, 2.25rem); 
            font-weight: 700; 
            line-height: 1.2;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        body.page-ri-ma-audio-video-guestbook h3{ 
            font-size: clamp(1.25rem, 2vw, 1.5rem); 
            font-weight: 700;
        }
        
        body.page-ri-ma-audio-video-guestbook p, body.page-ri-ma-audio-video-guestbook li{ 
            font-size: clamp(1rem, 1.2vw, 1.0625rem); 
            line-height: 1.7; 
        }

        body.page-ri-ma-audio-video-guestbook /* Hero Section with futuristic overlay */
        .hero-section{
            position: relative;
            width: 100%;
            height: 60vh;
            overflow: hidden;
            background: #000;
            margin-top: 0;
        }
        body.page-ri-ma-audio-video-guestbook .hero-image{
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        body.page-ri-ma-audio-video-guestbook .hero-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, 
                rgba(0,0,0,0.2) 0%,
                rgba(15, 12, 41, 0.5) 40%,
                rgba(48, 43, 99, 0.7) 70%,
                rgba(36, 36, 62, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 2rem 1rem;
        }
        body.page-ri-ma-audio-video-guestbook .hero-overlay h1{
            color: #fff !important;
            text-shadow: 0 0 40px rgba(255, 16, 240, 0.5);
        }
        body.page-ri-ma-audio-video-guestbook .hero-overlay p{
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        body.page-ri-ma-audio-video-guestbook /* Contact Section with glassmorphism */
        .contact-section{
            text-align: center;
            padding: 2rem 1rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin: 2rem auto;
            max-width: 1200px;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        }

        body.page-ri-ma-audio-video-guestbook /* Content Section */
        .content-section{
            max-width: 1200px;
            margin: auto;
            padding: 3rem 1.5rem;
            text-align: left;
            position: relative;
        }

        body.page-ri-ma-audio-video-guestbook .content-section::after{
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, 
                rgba(255, 16, 240, 0.1) 0%, 
                transparent 70%);
            border-radius: 50%;
            top: 10%;
            right: 5%;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }

        

        body.page-ri-ma-audio-video-guestbook /* Media Frame with glassmorphism */
        .media-frame{
            position: relative;
            width: 100%;
            max-width: 640px;
            aspect-ratio: 16/9;
            overflow: hidden;
            border-radius: 20px;
            margin: 2rem auto;
            padding: 10px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        body.page-ri-ma-audio-video-guestbook .media-frame:hover{
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
        }
        
        body.page-ri-ma-audio-video-guestbook .media-frame iframe{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        body.page-ri-ma-audio-video-guestbook /* Section Labels */
        .section-label{
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-family: 'Orbitron', sans-serif;
            position: relative;
        }

        body.page-ri-ma-audio-video-guestbook /* Pricing Section - Simple Purple Theme */
        .pricing-section{
            background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
            border-radius: 24px;
            padding: 3rem 2rem;
            margin: 3rem auto;
            max-width: 1200px;
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-card{
            background: #ffffff;
            border-radius: 20px;
            border: 1px solid var(--grey-light);
            padding: 2rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-card:hover{
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-card h3{
            color: var(--brand-purple);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 800;
            font-family: 'Alegreya Sans SC', sans-serif;
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-price{
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--brand-purple);
            margin-bottom: 0.5rem;
            font-family: 'Orbitron', sans-serif;
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-card ul{
            list-style: none;
            padding: 0;
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-card li{
            padding: 0.75rem 0;
            border-bottom: 1px solid #e5e7eb;
            position: relative;
            padding-left: 1.5rem;
            color: var(--ink);
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-card li:last-child{
            border-bottom: none;
        }
        
        body.page-ri-ma-audio-video-guestbook .pricing-card li::before{
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--brand-purple);
            font-weight: bold;
        }

        body.page-ri-ma-audio-video-guestbook /* Buttons - Futuristic Style */
        .btn-contact{
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            border: none;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
            box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
        }
        
        body.page-ri-ma-audio-video-guestbook .btn-contact::before{
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            transition: left 0.5s ease;
        }
        
        body.page-ri-ma-audio-video-guestbook .btn-contact:hover::before{
            left: 100%;
        }
        
        body.page-ri-ma-audio-video-guestbook .btn-contact:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                        0 0 40px rgba(255, 16, 240, 0.3);
        }
        
        body.page-ri-ma-audio-video-guestbook .btn-contact:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 3px;
        }

        body.page-ri-ma-audio-video-guestbook .btn-secondary{
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: 1rem 2.5rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.9);
            color: var(--grey-dark);
            border: 2px solid var(--grey-light);
            transition: all .3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
        }

        body.page-ri-ma-audio-video-guestbook .btn-secondary:hover{
            border-color: var(--brand-purple);
            color: var(--brand-purple);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
        }

        body.page-ri-ma-audio-video-guestbook /* CTA Section - Simple Purple Theme */
        .cta-section{
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 24px;
            margin: 4rem 2rem;
        }
        
        body.page-ri-ma-audio-video-guestbook .cta-section h2{
            color: #fff !important;
            background: none;
            -webkit-text-fill-color: #fff;
        }
        
        body.page-ri-ma-audio-video-guestbook .cta-section p{
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-ri-ma-audio-video-guestbook /* Breadcrumb */
        .breadcrumb{
            padding: 1rem 2rem;
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        body.page-ri-ma-audio-video-guestbook .breadcrumb a{
            color: #6b7280;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        body.page-ri-ma-audio-video-guestbook .breadcrumb a:hover{
            color: var(--brand-purple);
        }

        body.page-ri-ma-audio-video-guestbook /* Dark Mode */
        @media (prefers-color-scheme: dark){
            body { 
                background: #0b1220; 
                color: #e5e7eb; 
            }
            body::before {
                background: linear-gradient(45deg, 
                    rgba(236, 72, 153, 0.05) 0%, 
                    rgba(153, 69, 255, 0.05) 25%, 
                    rgba(0, 212, 255, 0.05) 50%, 
                    rgba(255, 16, 240, 0.05) 75%, 
                    rgba(236, 72, 153, 0.05) 100%);
            }
            .pricing-card { 
                background: #0f172a; 
                border-color: #1f2937; 
            }
            .media-frame {
                background: rgba(15, 23, 42, 0.8);
                border-color: rgba(31, 41, 55, 0.5);
            }
            .contact-section {
                background: rgba(15, 23, 42, 0.8);
            }
            .pricing-section {
                background: linear-gradient(135deg, 
                    rgba(102, 126, 234, 0.08) 0%, 
                    rgba(240, 147, 251, 0.08) 100%);
            }
        }

        body.page-ri-ma-audio-video-guestbook /* Accessibility */
        .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        body.page-ri-ma-audio-video-guestbook .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            padding: 12px 20px;
            border-radius: 999px;
            box-shadow: 0 10px 30px rgba(153, 69, 255, 0.4);
            text-decoration: none;
            font-weight: 600;
            font-family: 'Orbitron', sans-serif;
            z-index: 9999;
        }

        body.page-ri-ma-audio-video-guestbook /* Fade-in Animation */
        
        
        .fade-in{
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }
        
        body.page-ri-ma-audio-video-guestbook .fade-in:nth-child(1){ animation-delay: 0.1s; }
        body.page-ri-ma-audio-video-guestbook .fade-in:nth-child(2){ animation-delay: 0.2s; }
        body.page-ri-ma-audio-video-guestbook .fade-in:nth-child(3){ animation-delay: 0.3s; }
        body.page-ri-ma-audio-video-guestbook .fade-in:nth-child(4){ animation-delay: 0.4s; }

/* ===== Page: privacy-policy (privacy-policy.php) ===== */
body.page-privacy-policy{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --brand-purple: #8b5cf6;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        body.page-privacy-policy{ scroll-behavior: smooth; }
        
        body.page-privacy-policy{
            font-family: 'Arimo', sans-serif;
            color: var(--ink);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            line-height: 1.7;
            background: var(--bg);
            position: relative;
        }
        
        body.page-privacy-policy /* Animated gradient background */
        body::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(236, 72, 153, 0.03) 0%, 
                rgba(153, 69, 255, 0.03) 25%, 
                rgba(0, 212, 255, 0.03) 50%, 
                rgba(255, 16, 240, 0.03) 75%, 
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }
        
        
        
        @media (prefers-reduced-motion: reduce) {
            body.page-privacy-policy *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
        }
        
        body.page-privacy-policy /* Typography */
        h1{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            font-size: clamp(2rem, 3.6vw, 3rem);
            font-weight: 900;
            line-height: 1.05;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }
        
        
        
        body.page-privacy-policy h2, body.page-privacy-policy h3{
            font-family: 'Alegreya Sans SC', sans-serif;
        }
        
        body.page-privacy-policy /* Contact Info Bar */
        #contact_info{
            line-height: 32px;
            padding: 1rem 0;
            font-size: 1.1rem;
            font-weight: 300;
            text-align: center;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(229, 231, 235, 0.5);
        }
        
        body.page-privacy-policy #contact_info span{
            display: inline-block;
            margin: 0 10px;
        }
        
        body.page-privacy-policy /* Policy Content Styles */
        .policy-container{
            max-width: 1024px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        
        body.page-privacy-policy .policy-link{
            color: var(--brand-purple);
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        
        body.page-privacy-policy .policy-link:hover{
            color: #7c3aed;
        }
        
        body.page-privacy-policy .policy-section{
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid var(--grey-light);
        }
        
        body.page-privacy-policy .policy-section ul, body.page-privacy-policy .policy-section ol{
            list-style: none;
            padding-left: 0;
            margin-top: 1rem;
        }
        
        body.page-privacy-policy .policy-section li{
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        body.page-privacy-policy .policy-section ul li::before{
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--brand-purple);
            font-weight: bold;
        }
        
        body.page-privacy-policy .policy-section ol{
            counter-reset: policy-counter;
        }
        
        body.page-privacy-policy .policy-section ol li{
            counter-increment: policy-counter;
        }
        
        body.page-privacy-policy .policy-section ol li::before{
            content: counter(policy-counter) ".";
            position: absolute;
            left: 0;
            color: var(--brand-purple);
            font-weight: bold;
        }
        
        body.page-privacy-policy .policy-section h3{
            color: var(--grey-dark);
            margin-top: 0;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--brand-purple);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        body.page-privacy-policy .policy-section h4{
            color: var(--brand-purple);
            font-size: 1.125rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        body.page-privacy-policy /* Highlight Boxes */
        .highlight-box{
            background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
            border-left: 4px solid var(--brand-purple);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.1);
        }
        
        body.page-privacy-policy .last-updated{
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 600;
            border: 1px solid var(--grey-light);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        
        body.page-privacy-policy .contact-highlight{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 2rem;
            border-radius: 16px;
            margin-top: 2rem;
            color: white;
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
        }
        
        body.page-privacy-policy .contact-highlight .policy-link{
            color: #fff;
            font-weight: 600;
            text-decoration: underline;
        }
        
        body.page-privacy-policy .contact-highlight .policy-link:hover{
            color: #fbbf24;
        }
        
        body.page-privacy-policy /* Section Labels */
        .section-label{
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-family: 'Orbitron', sans-serif;
        }
        
        body.page-privacy-policy /* Floating particles effect */
        .policy-container::after{
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, 
                rgba(153, 69, 255, 0.1) 0%, 
                transparent 70%);
            border-radius: 50%;
            top: 10%;
            right: -50px;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        
        
        body.page-privacy-policy /* Fade-in Animation */
        
        
        .fade-in{
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }
        
        body.page-privacy-policy /* Responsive */
        @media (max-width: 640px){
            #contact_info {
                line-height: 28px;
                padding: 1.5rem 0.5rem;
                font-size: 0.9rem;
            }
            
            .policy-container {
                padding: 1rem;
                margin: 1rem;
            }
            
            .policy-section {
                padding: 1rem;
            }
        }
        
        body.page-privacy-policy /* Dark Mode */
        @media (prefers-color-scheme: dark){
            body { 
                background: #0b1220; 
                color: #e5e7eb; 
            }
            
            body::before {
                background: linear-gradient(45deg, 
                    rgba(236, 72, 153, 0.05) 0%, 
                    rgba(153, 69, 255, 0.05) 25%, 
                    rgba(0, 212, 255, 0.05) 50%, 
                    rgba(255, 16, 240, 0.05) 75%, 
                    rgba(236, 72, 153, 0.05) 100%);
            }
            
            .policy-container {
                background: rgba(15, 23, 42, 0.95);
            }
            
            .policy-section {
                background: #0f172a;
                border-color: #1f2937;
            }
            
            .highlight-box {
                background: linear-gradient(135deg, 
                    rgba(102, 126, 234, 0.1) 0%, 
                    rgba(240, 147, 251, 0.1) 100%);
            }
            
            .last-updated {
                background: linear-gradient(135deg, 
                    rgba(31, 41, 55, 1) 0%, 
                    rgba(55, 65, 81, 1) 100%);
                border-color: #374151;
            }
        }
        
        body.page-privacy-policy /* Accessibility */
        .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        
        body.page-privacy-policy .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            padding: 12px 20px;
            border-radius: 999px;
            box-shadow: 0 10px 30px rgba(153, 69, 255, 0.4);
            text-decoration: none;
            font-weight: 600;
            font-family: 'Orbitron', sans-serif;
            z-index: 9999;
        }

/* ===== Page: wedding-videography-ri-ma (wedding-videography-ri-ma.php) ===== */
body.page-wedding-videography-ri-ma{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
        }
        
        body.page-wedding-videography-ri-ma{ scroll-behavior: smooth; }
        
        body.page-wedding-videography-ri-ma{
            font-family: 'Arimo', sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
            position: relative;
            overflow-x: hidden;
        }
        
        body.page-wedding-videography-ri-ma /* Animated gradient background */
        body::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(236, 72, 153, 0.03) 0%, 
                rgba(153, 69, 255, 0.03) 25%, 
                rgba(0, 212, 255, 0.03) 50%, 
                rgba(255, 16, 240, 0.03) 75%, 
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }
        
        
        
        @media (prefers-reduced-motion: reduce) {
            body.page-wedding-videography-ri-ma *{ 
                animation-duration: 0.001ms !important; 
                transition-duration: 0.001ms !important; 
                scroll-behavior: auto !important; 
            }
        }
        
        body.page-wedding-videography-ri-ma /* Typography with futuristic touch */
        h1, body.page-wedding-videography-ri-ma h2, body.page-wedding-videography-ri-ma h3{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
            margin-bottom: 1rem;
            position: relative;
        }
        
        body.page-wedding-videography-ri-ma h1{ 
            font-size: clamp(2rem, 3.6vw, 3rem); 
            font-weight: 900; 
            line-height: 1.05;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }
        
        
        
        body.page-wedding-videography-ri-ma h2{ 
            font-size: clamp(1.5rem, 2.6vw, 2rem); 
            font-weight: 700; 
            line-height: 1.2;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        body.page-wedding-videography-ri-ma h3{ 
            font-size: clamp(1.25rem, 2vw, 1.5rem); 
            font-weight: 700;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        body.page-wedding-videography-ri-ma p, body.page-wedding-videography-ri-ma li{ 
            font-size: clamp(1rem, 1.2vw, 1.0625rem); 
            line-height: 1.7; 
            margin-bottom: 1rem;
        }
        
        body.page-wedding-videography-ri-ma /* Hero Section with futuristic overlay */
        .hero-section{
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
            background: #000;
            margin-top: 0;
        }
        
        body.page-wedding-videography-ri-ma .hero-image{
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }
        
        body.page-wedding-videography-ri-ma .hero-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, 
                rgba(0,0,0,0.2) 0%,
                rgba(15, 12, 41, 0.5) 40%,
                rgba(48, 43, 99, 0.7) 70%,
                rgba(36, 36, 62, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 2rem 1rem;
        }
        
        body.page-wedding-videography-ri-ma .hero-overlay h1{
            color: #fff !important;
            margin-bottom: 1rem;
            text-shadow: 0 0 40px rgba(255, 16, 240, 0.5);
        }
        
        body.page-wedding-videography-ri-ma .hero-overlay p{
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }
        
        body.page-wedding-videography-ri-ma /* Glassmorphism Video Grid */
        .video-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        body.page-wedding-videography-ri-ma .video-frame{
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        body.page-wedding-videography-ri-ma .video-frame::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0) 0%, 
                rgba(0, 212, 255, 0) 100%);
            transition: all 0.4s ease;
            z-index: 0;
            pointer-events: none;
        }
        
        body.page-wedding-videography-ri-ma .video-frame:hover{
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
        }
        
        body.page-wedding-videography-ri-ma .video-frame:hover::before{
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0.1) 0%, 
                rgba(0, 212, 255, 0.1) 100%);
        }
        
        body.page-wedding-videography-ri-ma .video-frame iframe{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            z-index: 1;
        }
        
        body.page-wedding-videography-ri-ma /* Video Play Button Overlay */
        .video-frame::after{
            content: "▶";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(153, 69, 255, 0.8);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.3s ease;
            pointer-events: none;
            box-shadow: 0 0 40px rgba(153, 69, 255, 0.5);
        }
        
        body.page-wedding-videography-ri-ma .video-frame:hover::after{
            background: rgba(255, 16, 240, 0.9);
            box-shadow: 0 0 60px rgba(255, 16, 240, 0.7);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        body.page-wedding-videography-ri-ma .video-frame.playing::after{
            opacity: 0;
        }
        
        body.page-wedding-videography-ri-ma /* Content Sections with floating particles */
        .content-section{
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
        }
        
        body.page-wedding-videography-ri-ma .content-section::after{
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, 
                rgba(255, 16, 240, 0.1) 0%, 
                transparent 70%);
            border-radius: 50%;
            top: 10%;
            right: 5%;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        
        
        body.page-wedding-videography-ri-ma /* Section Labels */
        .section-label{
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-family: 'Orbitron', sans-serif;
            position: relative;
        }
        
        body.page-wedding-videography-ri-ma .section-label::after{
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #ff10f0);
            animation: pulse 2s ease-in-out infinite;
        }
        
        
        
        body.page-wedding-videography-ri-ma /* Pricing Section - Simple Purple Theme */
        .pricing-section{
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 4rem auto;
            background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
            border-radius: 24px;
        }
        
        body.page-wedding-videography-ri-ma /* Glassmorphism Package Cards */
        .package-category{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            position: relative;
            z-index: 1;
        }
        
        body.page-wedding-videography-ri-ma .package-card{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        
        body.page-wedding-videography-ri-ma .package-card::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        body.page-wedding-videography-ri-ma .package-card:hover::before{
            transform: scaleX(1);
        }
        
        body.page-wedding-videography-ri-ma .package-card:hover{
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
            background: rgba(255, 255, 255, 0.85);
        }
        
        body.page-wedding-videography-ri-ma .package-name{
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 0.5rem;
        }
        
        body.page-wedding-videography-ri-ma .package-price{
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: #8b5cf6;
            margin-bottom: 0.5rem;
            font-family: 'Orbitron', sans-serif;
        }
        
        body.page-wedding-videography-ri-ma .package-description{
            list-style: none;
            padding: 0;
            flex-grow: 1;
        }
        
        body.page-wedding-videography-ri-ma .package-description li{
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(153, 69, 255, 0.1);
            margin-bottom: 0;
            position: relative;
            padding-left: 2rem;
            color: var(--grey-dark);
            transition: all 0.3s ease;
        }
        
        body.page-wedding-videography-ri-ma .package-description li:hover{
            padding-left: 2.5rem;
            color: var(--neon-purple);
        }
        
        body.page-wedding-videography-ri-ma .package-description li:last-child{
            border-bottom: none;
        }
        
        body.page-wedding-videography-ri-ma .package-description li::before{
            content: "✦";
            position: absolute;
            left: 0;
            background: linear-gradient(135deg, #667eea, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            font-size: 1.25rem;
        }
        
        body.page-wedding-videography-ri-ma /* Futuristic Buttons */
        .btn-contact{
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
            padding: 1rem 3rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            border: none;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
        }
        
        body.page-wedding-videography-ri-ma .btn-contact::before{
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            transition: left 0.5s ease;
        }
        
        body.page-wedding-videography-ri-ma .btn-contact:hover::before{
            left: 100%;
        }
        
        body.page-wedding-videography-ri-ma .btn-contact:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                        0 0 40px rgba(255, 16, 240, 0.3);
        }
        
        body.page-wedding-videography-ri-ma .btn-contact:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 3px;
        }
        
        body.page-wedding-videography-ri-ma /* CTA Section - Simple Purple Theme */
        .cta-section{
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin: 4rem 0;
        }
        
        body.page-wedding-videography-ri-ma .cta-content{
            position: relative;
            z-index: 1;
        }
        
        body.page-wedding-videography-ri-ma .cta-section h2{
            color: #fff !important;
            background: none;
            -webkit-text-fill-color: #fff;
        }
        
        body.page-wedding-videography-ri-ma .cta-section p{
            color: rgba(255, 255, 255, 0.95);
        }
        
        body.page-wedding-videography-ri-ma /* Notes box - Simple Purple Theme */
        .notes-box{
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 2rem;
            margin-top: 2rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        
        body.page-wedding-videography-ri-ma .notes-box ul{
            list-style: none;
            padding: 0;
        }
        
        body.page-wedding-videography-ri-ma .notes-box li{
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: #0f172a;
        }
        
        body.page-wedding-videography-ri-ma .notes-box li::before{
            content: "→";
            position: absolute;
            left: 0;
            color: #8b5cf6;
            font-weight: bold;
        }
        
        body.page-wedding-videography-ri-ma /* Fade-in Animation */
        
        
        .fade-in{
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }
        
        body.page-wedding-videography-ri-ma .fade-in:nth-child(1){ animation-delay: 0.1s; }
        body.page-wedding-videography-ri-ma .fade-in:nth-child(2){ animation-delay: 0.2s; }
        body.page-wedding-videography-ri-ma .fade-in:nth-child(3){ animation-delay: 0.3s; }
        body.page-wedding-videography-ri-ma .fade-in:nth-child(4){ animation-delay: 0.4s; }
        
        body.page-wedding-videography-ri-ma /* Accessibility */
        .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: 10000;
        }
        
        body.page-wedding-videography-ri-ma .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            padding: 12px 20px;
            border-radius: 999px;
            box-shadow: 0 10px 30px rgba(153, 69, 255, 0.4);
            text-decoration: none;
            font-weight: 600;
            font-family: 'Orbitron', sans-serif;
        }
        
        body.page-wedding-videography-ri-ma /* Mobile Responsive */
        @media (max-width: 768px){
            .hero-section {
                height: 50vh;
            }
            
            .hero-overlay h1 {
                font-size: 1.75rem;
            }
            
            .content-section,
            .pricing-section {
                padding: 2rem 1rem;
            }
            
            .video-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .package-category {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .package-price {
                font-size: 2rem;
            }
            
            .btn-contact {
                width: 100%;
            }
        }
        
        body.page-wedding-videography-ri-ma /* Dark mode support */
        @media (prefers-color-scheme: dark){
            body { 
                background: #0b1220; 
                color: #e5e7eb; 
            }
            
            body::before {
                background: linear-gradient(45deg, 
                    rgba(236, 72, 153, 0.05) 0%, 
                    rgba(153, 69, 255, 0.05) 25%, 
                    rgba(0, 212, 255, 0.05) 50%, 
                    rgba(255, 16, 240, 0.05) 75%, 
                    rgba(236, 72, 153, 0.05) 100%);
            }
            
            .video-frame { 
                background: rgba(15, 23, 42, 0.8); 
                border-color: rgba(31, 41, 55, 0.5); 
            }
            
            .package-card { 
                background: rgba(15, 23, 42, 0.8); 
                border-color: rgba(31, 41, 55, 0.5);
            }
            
            .notes-box { 
                background: rgba(15, 23, 42, 0.8); 
            }
            
            .pricing-section {
                background: linear-gradient(135deg, 
                    rgba(102, 126, 234, 0.08) 0%, 
                    rgba(240, 147, 251, 0.08) 100%);
            }
        }

/* ===== Page: about-me-dj-bob-carpenter (about-me-dj-bob-carpenter.php) ===== */
body.page-about-me-dj-bob-carpenter{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
        }

        body.page-about-me-dj-bob-carpenter{ scroll-behavior: smooth; }
        body.page-about-me-dj-bob-carpenter{
            font-family: 'Arimo', sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
            position: relative;
            overflow-x: hidden;
        }

        body.page-about-me-dj-bob-carpenter /* Animated gradient background */
        body::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(236, 72, 153, 0.03) 0%, 
                rgba(153, 69, 255, 0.03) 25%, 
                rgba(0, 212, 255, 0.03) 50%, 
                rgba(255, 16, 240, 0.03) 75%, 
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }

        

        @media (prefers-reduced-motion: reduce) {
            body.page-about-me-dj-bob-carpenter *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
        }

        body.page-about-me-dj-bob-carpenter /* Typography with futuristic touch */
        h1, body.page-about-me-dj-bob-carpenter h2, body.page-about-me-dj-bob-carpenter h3{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
            position: relative;
        }
        body.page-about-me-dj-bob-carpenter h1{ 
            font-size: clamp(2rem, 3.6vw, 3rem); 
            font-weight: 900; 
            line-height: 1.05;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }
        
        body.page-about-me-dj-bob-carpenter h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.2; }
        body.page-about-me-dj-bob-carpenter h3{ font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
        body.page-about-me-dj-bob-carpenter p, body.page-about-me-dj-bob-carpenter li{ font-size: clamp(1rem, 1.2vw, 1.0625rem); line-height: 1.7; }

        body.page-about-me-dj-bob-carpenter /* Hero Video Section with futuristic overlay */
        .hero-video{
            position: relative;
            width: 100%;
            height: 36rem;
            overflow: hidden;
            margin-top: 0;
            background: #000;
        }
        body.page-about-me-dj-bob-carpenter .hero-video-wrap{
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #000;
        }
        
        body.page-about-me-dj-bob-carpenter .hero-image{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
        }
        body.page-about-me-dj-bob-carpenter .hero-overlay{
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 1rem;
            transition: all 1s ease;
        }
        body.page-about-me-dj-bob-carpenter .hero-overlay h1{
            color: #fff !important;
        }

        body.page-about-me-dj-bob-carpenter /* Fade-in Animation */
        
        .fade-in{
            animation: fadeIn 1s ease-out forwards;
        }

        body.page-about-me-dj-bob-carpenter /* Glassmorphism Service Cards */
        .service-card{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
            color: inherit;
            position: relative;
        }
        body.page-about-me-dj-bob-carpenter .service-card::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0) 0%, 
                rgba(0, 212, 255, 0) 100%);
            transition: all 0.4s ease;
            z-index: -1;
        }
        body.page-about-me-dj-bob-carpenter .service-card:hover{
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
        }
        body.page-about-me-dj-bob-carpenter .service-card:hover::before{
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0.1) 0%, 
                rgba(0, 212, 255, 0.1) 100%);
        }
        body.page-about-me-dj-bob-carpenter .service-card img{
            width: 100%;
            height: auto;
            transition: transform 0.4s ease;
            display: block;
        }
        body.page-about-me-dj-bob-carpenter .service-card:hover img{
            transform: scale(1.08);
        }
        body.page-about-me-dj-bob-carpenter .service-card-content{
            padding: 1.5rem;
            background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 0.9), 
                rgba(255, 255, 255, 0.7));
        }
        body.page-about-me-dj-bob-carpenter .service-card h3{
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.page-about-me-dj-bob-carpenter /* Futuristic Buttons */
        .btn-primary{
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            border: none;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
        }
        body.page-about-me-dj-bob-carpenter .btn-primary::before{
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            transition: left 0.5s ease;
        }
        body.page-about-me-dj-bob-carpenter .btn-primary:hover::before{
            left: 100%;
        }
        body.page-about-me-dj-bob-carpenter .btn-primary:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                        0 0 40px rgba(255, 16, 240, 0.3);
        }
        body.page-about-me-dj-bob-carpenter .btn-primary:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 3px;
        }

        body.page-about-me-dj-bob-carpenter /* Content Containers */
        .content-container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        body.page-about-me-dj-bob-carpenter .content-section{
            padding: 3rem 1rem;
            position: relative;
        }

        body.page-about-me-dj-bob-carpenter /* Gradient backgrounds for sections */
        .content-section:nth-child(even){
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.05) 0%, 
                rgba(118, 75, 162, 0.05) 100%);
        }

        body.page-about-me-dj-bob-carpenter /* Portrait Photo with glow */
        .portrait-photo{
            max-width: 400px;
            width: 100%;
            height: auto;
            box-shadow: 0 0 40px rgba(153, 69, 255, 0.3);
            transition: all 0.4s ease;
        }
        body.page-about-me-dj-bob-carpenter .portrait-photo:hover{
            box-shadow: 0 0 60px rgba(255, 16, 240, 0.5);
            transform: scale(1.02);
        }

        body.page-about-me-dj-bob-carpenter /* Package Description */
        .package-description{
            list-style: none;
            padding: 0;
        }
        body.page-about-me-dj-bob-carpenter .package-description li{
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--grey-light);
            position: relative;
            padding-left: 1.5rem;
        }
        body.page-about-me-dj-bob-carpenter .package-description li::before{
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--neon-pink);
            font-weight: bold;
        }
        body.page-about-me-dj-bob-carpenter .package-description li:last-child{
            border-bottom: none;
        }

        body.page-about-me-dj-bob-carpenter /* Testimonial Cards */
        .testimonial-card{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.4s ease;
        }
        body.page-about-me-dj-bob-carpenter .testimonial-card:hover{
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(153, 69, 255, 0.2);
        }

        body.page-about-me-dj-bob-carpenter /* Breadcrumb */
        .breadcrumb{
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--grey-dark);
        }
        body.page-about-me-dj-bob-carpenter .breadcrumb a{
            color: var(--neon-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        body.page-about-me-dj-bob-carpenter .breadcrumb a:hover{
            color: var(--neon-pink);
        }

        body.page-about-me-dj-bob-carpenter /* Social Icons */
        .social-icon{
            transition: all 0.3s ease;
        }
        body.page-about-me-dj-bob-carpenter .social-icon:hover{
            transform: translateY(-3px);
            color: var(--neon-pink) !important;
        }

        @media (prefers-color-scheme: dark) {
            body.page-about-me-dj-bob-carpenter{ background: #0b1220; color: #e5e7eb; }
            body.page-about-me-dj-bob-carpenter .service-card{ background: rgba(15, 23, 42, 0.8); border-color: rgba(31, 41, 55, 0.5); }
            body.page-about-me-dj-bob-carpenter .testimonial-card{ background: rgba(15, 23, 42, 0.8); }
        }

        body.page-about-me-dj-bob-carpenter .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        body.page-about-me-dj-bob-carpenter .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: #fff;
            padding: 8px 12px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            z-index: 9999;
        }

        @media (max-width: 640px) {
            body.page-about-me-dj-bob-carpenter .hero-overlay h1{
                font-size: 1.75rem;
            }
            body.page-about-me-dj-bob-carpenter .hero-overlay p{
                font-size: 1rem;
            }
            body.page-about-me-dj-bob-carpenter .hero-video{
                height: 24rem;
            }
        }

/* ===== Page: thankyou (thankyou.php) ===== */
body.page-thankyou{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
        }
        
        body.page-thankyou{ scroll-behavior: smooth; }
        
        body.page-thankyou{
            font-family: 'Arimo', sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            position: relative;
            overflow-x: hidden;
        }
        
        body.page-thankyou /* Animated gradient background */
        body::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(236, 72, 153, 0.03) 0%, 
                rgba(153, 69, 255, 0.03) 25%, 
                rgba(0, 212, 255, 0.03) 50%, 
                rgba(255, 16, 240, 0.03) 75%, 
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }
        
        
        
        @media (prefers-reduced-motion: reduce) {
            body.page-thankyou *{ 
                animation-duration: 0.001ms !important; 
                transition-duration: 0.001ms !important; 
                scroll-behavior: auto !important; 
            }
        }
        
        body.page-thankyou /* Typography with futuristic touch */
        h1, body.page-thankyou h2, body.page-thankyou h3{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
            margin-bottom: 1rem;
            position: relative;
        }
        
        body.page-thankyou h1{ 
            font-size: clamp(2rem, 3.6vw, 3rem); 
            font-weight: 900; 
            line-height: 1.05;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }
        
        
        
        body.page-thankyou h2{ 
            font-size: clamp(1.5rem, 2.6vw, 2rem); 
            font-weight: 700; 
            line-height: 1.2;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        body.page-thankyou h3{ 
            font-size: clamp(1.25rem, 2vw, 1.5rem); 
            font-weight: 700;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        body.page-thankyou p, body.page-thankyou li{ 
            font-size: clamp(1rem, 1.2vw, 1.0625rem); 
            line-height: 1.7; 
        }
        
        body.page-thankyou /* Hero Section with futuristic overlay */
        .hero{
            position: relative;
            width: 100%;
            height: 60vh;
            overflow: hidden;
            background: #000;
        }
        
        body.page-thankyou .hero img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.6);
        }
        
        body.page-thankyou .hero-inner{
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, 
                rgba(0,0,0,0.5) 0%, 
                rgba(153, 69, 255, 0.2) 50%, 
                rgba(255, 16, 240, 0.2) 100%);
        }
        
        body.page-thankyou .hero-inner::before{
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(255, 16, 240, 0.05), 
                transparent, 
                rgba(0, 212, 255, 0.05), 
                transparent);
            animation: shimmer 3s linear infinite;
            pointer-events: none;
        }
        
        
        
        body.page-thankyou .hero-content{
            position: relative;
            z-index: 1;
        }
        
        body.page-thankyou .hero-inner h1{
            color: #fff !important;
            margin-bottom: 1rem;
        }
        
        body.page-thankyou .hero-inner p{
            color: #f3f4f6;
            font-size: clamp(16px, 2vw, 20px);
            margin-bottom: 1.5rem;
        }
        
        body.page-thankyou /* Wrapper */
        .wrap{
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }
        
        body.page-thankyou /* Glassmorphism Card */
        .card{
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        body.page-thankyou .card::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0) 0%, 
                rgba(0, 212, 255, 0) 100%);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        body.page-thankyou .card:hover{
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.2);
        }
        
        body.page-thankyou .card:hover::before{
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0.05) 0%, 
                rgba(0, 212, 255, 0.05) 100%);
        }
        
        body.page-thankyou /* CTA Buttons Container */
        .cta{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 1.5rem;
        }
        
        body.page-thankyou /* Futuristic Buttons */
        .btn{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--grey-dark);
            border: 2px solid transparent;
            background-clip: padding-box;
        }
        
        body.page-thankyou .btn::before{
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 999px;
            padding: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }
        
        body.page-thankyou .btn:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(153, 69, 255, 0.3);
        }
        
        body.page-thankyou .btn:hover::before{
            opacity: 1;
        }
        
        body.page-thankyou .btn-primary{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            box-shadow: 0 4px 16px rgba(153, 69, 255, 0.3);
        }
        
        body.page-thankyou .btn-primary::before{
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            opacity: 1;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.5s ease;
        }
        
        body.page-thankyou .btn-primary:hover::before{
            left: 100%;
        }
        
        body.page-thankyou .btn-primary:hover{
            box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                        0 0 40px rgba(255, 16, 240, 0.3);
        }
        
        body.page-thankyou .btn:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 3px;
            box-shadow: 0 0 20px rgba(255, 16, 240, 0.3);
        }
        
        body.page-thankyou /* Services Grid with Glassmorphism */
        .services-grid{
            background: linear-gradient(135deg, 
                rgba(236, 72, 153, 0.05) 0%, 
                rgba(153, 69, 255, 0.05) 50%, 
                rgba(0, 212, 255, 0.05) 100%);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 2rem;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        body.page-thankyou .services-grid::before{
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(255, 16, 240, 0.03), 
                transparent, 
                rgba(0, 212, 255, 0.03), 
                transparent);
            animation: shimmer 4s linear infinite;
        }
        
        body.page-thankyou .services-content{
            position: relative;
            z-index: 1;
        }
        
        body.page-thankyou .services-content h3, body.page-thankyou .services-content h4{
            font-family: 'Orbitron', sans-serif;
        }
        
        body.page-thankyou .services-content a{
            color: var(--grey-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        body.page-thankyou .services-content a:hover{
            background: linear-gradient(90deg, #ff10f0, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-left: 4px;
        }
        
        body.page-thankyou /* List Items with Futuristic Bullets */
        ul.feature-list li{
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
        }
        
        body.page-thankyou ul.feature-list li::before{
            content: "✦";
            position: absolute;
            left: 0;
            background: linear-gradient(135deg, #667eea, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            font-size: 1.5rem;
            animation: pulse 2s ease-in-out infinite;
        }
        
        
        
        body.page-thankyou /* Fade-in Animation */
        
        
        .fade-in{
            animation: fadeIn 1s ease-out forwards;
        }
        
        body.page-thankyou /* Floating particles effect */
        .wrap::after{
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, 
                rgba(153, 69, 255, 0.1) 0%, 
                transparent 70%);
            border-radius: 50%;
            top: 10%;
            right: 5%;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }
        
        
        
        body.page-thankyou /* Dark mode support */
        @media (prefers-color-scheme: dark){
            body { 
                background: #0b1220; 
                color: #e5e7eb; 
            }
            .card { 
                background: rgba(15, 23, 42, 0.8); 
                border-color: rgba(31, 41, 55, 0.5); 
            }
            .services-grid { 
                background: rgba(15, 23, 42, 0.8); 
            }
        }
        
        body.page-thankyou /* Skip to Content Link */
        .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: 10000;
        }
        
        body.page-thankyou .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 12px 20px;
            border-radius: 999px;
            box-shadow: 0 8px 24px rgba(153, 69, 255, 0.3);
            text-decoration: none;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        body.page-thankyou /* Mobile Responsive */
        @media (max-width: 768px){
            .hero {
                height: 50vh;
            }
            
            .hero-inner h1 {
                font-size: 1.75rem;
            }
            
            .cta {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn {
                width: 100%;
            }
        }

/* ===== Page: wedding-photography-ri-ma (wedding-photography-ri-ma.php) ===== */
body.page-wedding-photography-ri-ma{
            --brand-pink: #ec4899;
            --neon-pink: #ff10f0;
            --neon-blue: #00d4ff;
            --neon-purple: #9945ff;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
        }

        body.page-wedding-photography-ri-ma{ scroll-behavior: smooth; }
        
        body.page-wedding-photography-ri-ma{
            font-family: 'Arimo', sans-serif;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            position: relative;
            overflow-x: hidden;
        }

        body.page-wedding-photography-ri-ma /* Animated gradient background */
        body::before{
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(236, 72, 153, 0.03) 0%, 
                rgba(153, 69, 255, 0.03) 25%, 
                rgba(0, 212, 255, 0.03) 50%, 
                rgba(255, 16, 240, 0.03) 75%, 
                rgba(236, 72, 153, 0.03) 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -1;
            pointer-events: none;
        }

        

        @media (prefers-reduced-motion: reduce) {
            body.page-wedding-photography-ri-ma *{ 
                animation-duration: 0.001ms !important; 
                transition-duration: 0.001ms !important; 
                scroll-behavior: auto !important; 
            }
        }

        body.page-wedding-photography-ri-ma /* Typography with futuristic touch */
        h1, body.page-wedding-photography-ri-ma h2, body.page-wedding-photography-ri-ma h3{
            font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
            margin-bottom: 1rem;
            position: relative;
        }

        body.page-wedding-photography-ri-ma h1{ 
            font-size: clamp(2rem, 3.6vw, 3rem); 
            font-weight: 900; 
            line-height: 1.05;
            background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 8s ease infinite;
            background-size: 200% auto;
        }

        

        body.page-wedding-photography-ri-ma h2{ 
            font-size: clamp(1.5rem, 2.6vw, 2rem); 
            font-weight: 700; 
            line-height: 1.2;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.page-wedding-photography-ri-ma h3{ 
            font-size: clamp(1.25rem, 2vw, 1.5rem); 
            font-weight: 700;
            color: var(--grey-dark);
        }

        body.page-wedding-photography-ri-ma p, body.page-wedding-photography-ri-ma li{ 
            font-size: clamp(1rem, 1.2vw, 1.0625rem); 
            line-height: 1.7; 
            margin-bottom: 1rem;
        }

        body.page-wedding-photography-ri-ma /* Layout */
        .wrap{ 
            max-width: 1200px; 
            margin-inline: auto; 
            padding-inline: clamp(16px, 3vw, 28px); 
        }

        body.page-wedding-photography-ri-ma /* Hero Section with futuristic overlay */
        .hero-video-wrap{
            position: relative;
            width: 100%;
            height: 60vh;
            overflow: hidden;
            background: #000;
            margin-top: 0;
        }

        body.page-wedding-photography-ri-ma .hero-video{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        body.page-wedding-photography-ri-ma .hero-image{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        body.page-wedding-photography-ri-ma .hero-video:not(:defined) + .hero-image, body.page-wedding-photography-ri-ma .hero-video[data-failed] + .hero-image{
            display: block;
        }

        body.page-wedding-photography-ri-ma .hero-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(153, 69, 255, 0.2));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem 1rem;
            text-align: center;
        }

        body.page-wedding-photography-ri-ma .hero-overlay::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(255, 16, 240, 0.1), 
                transparent, 
                rgba(0, 212, 255, 0.1), 
                transparent);
            animation: shimmer 3s linear infinite;
            pointer-events: none;
        }

        

        body.page-wedding-photography-ri-ma .hero-content{
            max-width: 800px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        body.page-wedding-photography-ri-ma /* Futuristic Buttons */
        .btn{
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
        }

        body.page-wedding-photography-ri-ma .btn-primary{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            box-shadow: 0 4px 16px rgba(153, 69, 255, 0.3);
        }

        body.page-wedding-photography-ri-ma .btn-primary::before{
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            transition: left 0.5s ease;
        }

        body.page-wedding-photography-ri-ma .btn-primary:hover::before{
            left: 100%;
        }

        body.page-wedding-photography-ri-ma .btn-primary:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                        0 0 40px rgba(255, 16, 240, 0.3);
        }

        body.page-wedding-photography-ri-ma .btn-ghost{
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--ink);
            border: 2px solid transparent;
            position: relative;
            background-clip: padding-box;
        }

        body.page-wedding-photography-ri-ma .btn-ghost::before{
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 999px;
            padding: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        body.page-wedding-photography-ri-ma .btn-ghost:hover{
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(153, 69, 255, 0.3);
        }

        body.page-wedding-photography-ri-ma .btn-ghost:hover::before{
            opacity: 1;
        }

        body.page-wedding-photography-ri-ma .btn:focus-visible{
            outline: 2px solid var(--neon-pink);
            outline-offset: 3px;
        }

        body.page-wedding-photography-ri-ma /* Tags with neon glow */
        .tag{
            font-size: 0.8rem;
            padding: 0.5rem 1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 16, 240, 0.3);
            margin-bottom: 1rem;
            display: inline-block;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
            box-shadow: 0 0 20px rgba(255, 16, 240, 0.2);
        }

        body.page-wedding-photography-ri-ma /* Portrait with futuristic glow */
        .portrait-glow{
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(153, 69, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body.page-wedding-photography-ri-ma .portrait-glow:hover{
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 0 60px rgba(255, 16, 240, 0.5),
                        0 20px 40px rgba(153, 69, 255, 0.3);
        }

        body.page-wedding-photography-ri-ma .portrait-glow img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        body.page-wedding-photography-ri-ma /* Gallery with glassmorphism */
        .gallery-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            body.page-wedding-photography-ri-ma .gallery-grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 1.75rem;
            }
        }

        @media (min-width: 1024px) {
            body.page-wedding-photography-ri-ma .gallery-grid{
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        body.page-wedding-photography-ri-ma .gallery-item{
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        body.page-wedding-photography-ri-ma .gallery-item::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0) 0%, 
                rgba(0, 212, 255, 0) 100%);
            transition: all 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        body.page-wedding-photography-ri-ma .gallery-item:hover{
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.5);
        }

        body.page-wedding-photography-ri-ma .gallery-item:hover::before{
            background: linear-gradient(135deg, 
                rgba(255, 16, 240, 0.1) 0%, 
                rgba(0, 212, 255, 0.1) 100%);
        }

        body.page-wedding-photography-ri-ma .gallery-tile{
            width: 100%;
            display: block;
            aspect-ratio: 4 / 3;
        }

        body.page-wedding-photography-ri-ma /* Package cards with neon accents */
        .package-card{
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(153, 69, 255, 0.2);
            border-radius: 24px;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        body.page-wedding-photography-ri-ma .package-card:hover{
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(153, 69, 255, 0.25),
                        0 0 60px rgba(255, 16, 240, 0.1);
            border: 1px solid rgba(255, 16, 240, 0.4);
        }

        body.page-wedding-photography-ri-ma .package-card.premium{
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
            box-shadow: 0 8px 32px rgba(153, 69, 255, 0.25);
            border: 1px solid rgba(255, 16, 240, 0.3);
        }

        body.page-wedding-photography-ri-ma .package-card.premium:hover{
            box-shadow: 0 30px 60px rgba(153, 69, 255, 0.3),
                        0 0 80px rgba(255, 16, 240, 0.2);
        }

        body.page-wedding-photography-ri-ma .package-title{
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 0.5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-align: center;
        }

        body.page-wedding-photography-ri-ma .package-price{
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff10f0, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            text-align: center;
            font-family: 'Orbitron', sans-serif;
        }

        body.page-wedding-photography-ri-ma .package-details{
            list-style: none;
            padding: 0;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        body.page-wedding-photography-ri-ma .package-details li{
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(229, 231, 235, 0.5);
            color: var(--grey-dark);
            position: relative;
            padding-left: 1.75rem;
        }

        body.page-wedding-photography-ri-ma .package-details li::before{
            content: "✓";
            position: absolute;
            left: 0;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            font-size: 1.1rem;
        }

        body.page-wedding-photography-ri-ma .package-details li:last-child{
            border-bottom: none;
        }

        body.page-wedding-photography-ri-ma .package-savings{
            background: linear-gradient(90deg, #ff10f0, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-style: italic;
            font-weight: 700;
            margin-bottom: 1rem;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        body.page-wedding-photography-ri-ma /* Sections with gradient backgrounds */
        .section{
            padding: 4rem 0;
            position: relative;
        }

        body.page-wedding-photography-ri-ma .section-gradient{
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.05) 0%, 
                rgba(240, 147, 251, 0.05) 100%);
            border-radius: 32px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        body.page-wedding-photography-ri-ma .section-gradient::after{
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, 
                rgba(255, 16, 240, 0.1) 0%, 
                transparent 70%);
            border-radius: 50%;
            top: 10%;
            right: 5%;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        

        body.page-wedding-photography-ri-ma /* Review cards with glassmorphism */
        .review-card{
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(153, 69, 255, 0.2);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
            transition: all 0.3s ease;
        }

        body.page-wedding-photography-ri-ma .review-card:hover{
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(153, 69, 255, 0.25);
            border-color: rgba(255, 16, 240, 0.3);
        }

        body.page-wedding-photography-ri-ma .review-card blockquote{
            margin: 0;
            color: var(--grey-dark);
            line-height: 1.6;
        }

        body.page-wedding-photography-ri-ma .review-card figcaption{
            margin-top: 1rem;
            font-size: 0.875rem;
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        body.page-wedding-photography-ri-ma /* Mobile Responsive */
        @media (max-width: 768px){
            .hero-video-wrap {
                height: 50vh;
            }

            .hero-overlay {
                padding: 1rem 0.5rem;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.875rem;
            }

            .package-card {
                max-width: 100%;
                margin-bottom: 2rem;
            }

            h1 {
                font-size: 2rem;
                line-height: 1.1;
            }
        }

        body.page-wedding-photography-ri-ma /* Accessibility */
        .skip-to-content{
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: 10000;
        }

        body.page-wedding-photography-ri-ma .skip-to-content:focus{
            left: 16px;
            top: 16px;
            width: auto;
            height: auto;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 12px 20px;
            border-radius: 999px;
            box-shadow: 0 8px 24px rgba(153, 69, 255, 0.3);
            text-decoration: none;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        body.page-wedding-photography-ri-ma /* Michelle Bio Section */
        .bio-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            body.page-wedding-photography-ri-ma .bio-grid{
                grid-template-columns: 5fr 7fr;
                gap: 3rem;
            }
        }

        body.page-wedding-photography-ri-ma .bio-features{
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }

        @media (min-width: 640px) {
            body.page-wedding-photography-ri-ma .bio-features{
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }

        body.page-wedding-photography-ri-ma .bio-features li{
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(153, 69, 255, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 2rem;
        }

        body.page-wedding-photography-ri-ma .bio-features li::before{
            content: "✓";
            position: absolute;
            left: 0.75rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            font-size: 1.1rem;
        }

        body.page-wedding-photography-ri-ma .bio-features li:hover{
            transform: translateX(4px);
            box-shadow: 0 8px 20px rgba(153, 69, 255, 0.15);
            border-color: rgba(255, 16, 240, 0.3);
        }

        body.page-wedding-photography-ri-ma /* Final CTA with animated background */
        .cta-section{
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.1) 0%, 
                rgba(240, 147, 251, 0.1) 50%,
                rgba(0, 212, 255, 0.1) 100%);
            border-radius: 32px;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        body.page-wedding-photography-ri-ma .cta-section::before{
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(255, 16, 240, 0.05), 
                transparent, 
                rgba(0, 212, 255, 0.05), 
                transparent);
            animation: shimmer 5s linear infinite;
        }

        body.page-wedding-photography-ri-ma .cta-content{
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        body.page-wedding-photography-ri-ma .btn-group{
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
    
        body.page-wedding-photography-ri-ma /* =========================================================
           Classic pricing style (matches Main Event Weddings look)
           ========================================================= */
        .package-card{
            background:#ffffff;
            border:1px solid rgba(0,0,0,.08);
            border-radius:18px;
            box-shadow:0 10px 24px rgba(0,0,0,.06);
            backdrop-filter:none;
            -webkit-backdrop-filter:none;
        }
        body.page-wedding-photography-ri-ma .package-card:hover{
            transform:translateY(-4px);
            box-shadow:0 18px 38px rgba(0,0,0,.10);
            border-color:rgba(239,141,225,.65);
        }
        body.page-wedding-photography-ri-ma .package-card.premium{
            background:#ffffff;
            border-color:rgba(239,141,225,.65);
            box-shadow:0 12px 28px rgba(0,0,0,.08);
        }
        body.page-wedding-photography-ri-ma .package-card.premium:hover{
            box-shadow:0 20px 44px rgba(0,0,0,.12);
        }
        body.page-wedding-photography-ri-ma .package-title{
            font-family:'Arimo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            font-size:1.35rem;
            font-weight:800;
            letter-spacing:0;
            text-transform:none;
            color:#1f2937;
            background:none;
            -webkit-text-fill-color:initial;
            margin-bottom:.75rem;
            text-align:center;
        }
        body.page-wedding-photography-ri-ma .package-price{
            font-family:'Arimo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            font-size:2.15rem;
            font-weight:900;
            color:#111827;
            background:none;
            -webkit-text-fill-color:initial;
            margin-bottom:.85rem;
        }
        body.page-wedding-photography-ri-ma .package-savings{
            font-family:'Arimo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            display:inline-block;
            padding:.35rem .7rem;
            border-radius:999px;
            background:#f3f4f6;
            border:1px solid rgba(239,141,225,.70);
            color:#7a1f6a;
            font-style:normal;
            font-weight:800;
            text-transform:none;
            letter-spacing:0;
            margin:0 auto 1rem;
        }
        body.page-wedding-photography-ri-ma .package-details li::before{
            background:none;
            -webkit-text-fill-color:initial;
            color:#EF8DE1;
            font-weight:900;
        }
        body.page-wedding-photography-ri-ma .section-gradient{
            background:#fafafa;
            border:1px solid rgba(0,0,0,.06);
            border-radius:24px;
        }
        body.page-wedding-photography-ri-ma .section-gradient::after{ display:none; }

        body.page-wedding-photography-ri-ma /* Classic Select button (match Main Event style – less futuristic) */
        a.select-package-btn{
            width:100%;
            justify-content:center;
            text-transform:none !important;
            letter-spacing:0 !important;
            font-family:'Arimo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
            font-weight:800;
            padding:14px 22px;
            border-radius:999px;
            background:#EF8DE1;
            color:#111827;
            border:1px solid rgba(0,0,0,.06);
            box-shadow:0 10px 24px rgba(239,141,225,.28);
            text-decoration:none;
        }
        body.page-wedding-photography-ri-ma a.select-package-btn:hover{
            transform:translateY(-2px);
            box-shadow:0 14px 34px rgba(239,141,225,.36);
            background:#e879d8;
        }
        body.page-wedding-photography-ri-ma /* Disable the "futuristic" shimmer overlay on this button */
        a.select-package-btn.btn-primary::before{ content:none !important; display:none !important; }

body.page-wedding-photography-ri-ma /* =========================================================
   Fix savings pill visibility + soften button color (lavender)
   ========================================================= */

/* Savings pill: force visible text + classic lavender look */
.package-savings, body.page-wedding-photography-ri-ma .savings-pill, body.page-wedding-photography-ri-ma .pricing-savings, body.page-wedding-photography-ri-ma .package-card .package-savings{
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;

  background: #F3E8FF !important;     /* soft lavender */
  border: 1px solid #C4B5FD !important;
  color: #4C1D95 !important;

  font-weight: 800 !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: 0 !important;

  padding: .4rem .75rem !important;
  border-radius: 999px !important;

  /* kills invisible/gradient text-fill styling */
  -webkit-text-fill-color: #4C1D95 !important;
}

body.page-wedding-photography-ri-ma /* center nicely under price */
.package-savings, body.page-wedding-photography-ri-ma .package-card .package-savings{
  margin: .6rem auto 0 !important;
}

body.page-wedding-photography-ri-ma /* Select button: soft lavender (less fuchsia) */
.select-package-btn, body.page-wedding-photography-ri-ma a.select-package-btn, body.page-wedding-photography-ri-ma .package-card .select-package, body.page-wedding-photography-ri-ma .package-card a[data-select-package]{
  background: #F3E8FF !important;
  border: 1px solid #C4B5FD !important;
  color: #4C1D95 !important;

  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;

  box-shadow: 0 10px 20px rgba(0,0,0,.08) !important;
}

body.page-wedding-photography-ri-ma .select-package-btn:hover, body.page-wedding-photography-ri-ma a.select-package-btn:hover, body.page-wedding-photography-ri-ma .package-card .select-package:hover, body.page-wedding-photography-ri-ma .package-card a[data-select-package]:hover{
  background: #E9D5FF !important;
  border-color: #A78BFA !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10) !important;
}

/* ===== Page: ri-dj-bob-carpenter-wedding-samples (ri-dj-bob-carpenter-wedding-samples.php) ===== */
body.page-ri-dj-bob-carpenter-wedding-samples{
        --brand-pink: #ec4899;
        --neon-pink: #ff10f0;
        --neon-blue: #00d4ff;
        --neon-purple: #9945ff;
        --grey-dark: #374151;
        --grey-light: #e5e7eb;
        --ink: #0f172a;
        --surface: #ffffff;
        --bg: #f8fafc;
        --ring: rgba(236, 72, 153, 0.28);
        --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples{ scroll-behavior: smooth; }
    body.page-ri-dj-bob-carpenter-wedding-samples{ 
        font-family: 'Arimo', sans-serif; 
        margin: 0; 
        background: var(--bg);
        color: var(--ink);
        -webkit-font-smoothing: antialiased;
        position: relative;
        overflow-x: hidden;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Animated gradient background */
    body::before{
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, 
            rgba(236, 72, 153, 0.03) 0%, 
            rgba(153, 69, 255, 0.03) 25%, 
            rgba(0, 212, 255, 0.03) 50%, 
            rgba(255, 16, 240, 0.03) 75%, 
            rgba(236, 72, 153, 0.03) 100%);
        background-size: 400% 400%;
        animation: gradientShift 20s ease infinite;
        z-index: -1;
        pointer-events: none;
    }
    
    
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Typography with futuristic touch */
    h1, body.page-ri-dj-bob-carpenter-wedding-samples h2, body.page-ri-dj-bob-carpenter-wedding-samples h3{
        font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
        letter-spacing: 0.5px;
        color: var(--grey-dark);
        position: relative;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples h1{ 
        font-size: clamp(2rem, 3.6vw, 3rem); 
        font-weight: 900; 
        line-height: 1.05;
        background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientText 8s ease infinite;
        background-size: 200% auto;
    }
    
    
    
    body.page-ri-dj-bob-carpenter-wedding-samples h2{ 
        font-size: clamp(1.5rem, 2.6vw, 2rem); 
        font-weight: 700; 
        line-height: 1.2;
        background: linear-gradient(90deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples h3{ 
        font-size: clamp(1.25rem, 2vw, 1.5rem); 
        font-weight: 700;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples p, body.page-ri-dj-bob-carpenter-wedding-samples li{ 
        font-size: clamp(1rem, 1.2vw, 1.0625rem); 
        line-height: 1.7; 
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Skip to content */
    .skip-to-content{ 
        position: absolute; 
        left: -9999px; 
        top: auto; 
        width: 1px; 
        height: 1px; 
        overflow: hidden; 
    }
    body.page-ri-dj-bob-carpenter-wedding-samples .skip-to-content:focus{ 
        left: 16px; 
        top: 16px; 
        width: auto; 
        height: auto; 
        background: #fff; 
        padding: 8px 12px; 
        border-radius: 8px; 
        box-shadow: 0 6px 18px rgba(0,0,0,.15); 
        z-index: 9999; 
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Hero Header with futuristic overlay */
    .header-unit{ 
        height: clamp(20rem, 56.25vw, 40rem); 
        position: relative; 
        overflow: hidden;
        background: #000;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .header-video{
        position: absolute; 
        top: 50%; 
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw; 
        height: 56.25vw; 
        min-width: 177.78%; 
        min-height: 100%;
        border: 0;
        z-index: 1;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .header-overlay{
        position: absolute; 
        inset: 0; 
        display: grid; 
        place-items: center;
        background: rgba(0,0,0,0.5);
        color: white; 
        text-align: center; 
        padding: 1rem;
        z-index: 10;
        transition: all 1s ease;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .header-overlay h1{
        color: #fff !important;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Fade-in Animation */
    
    .fade-in{
        animation: fadeIn 1s ease-out forwards;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Glassmorphism Video Grid */
    .video-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        padding: 0;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .video-card{ 
        position: relative; 
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 20px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        aspect-ratio: 16/9;
        cursor: pointer;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .video-card::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(255, 16, 240, 0) 0%, 
            rgba(0, 212, 255, 0) 100%);
        transition: all 0.4s ease;
        z-index: -1;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .video-card:hover{ 
        transform: translateY(-10px) scale(1.02); 
        box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                    0 0 60px rgba(255, 16, 240, 0.1);
        border: 1px solid rgba(255, 16, 240, 0.5);
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .video-card:hover::before{
        background: linear-gradient(135deg, 
            rgba(255, 16, 240, 0.1) 0%, 
            rgba(0, 212, 255, 0.1) 100%);
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .video-card iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Video title overlay */
    .video-title{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 2;
        pointer-events: none;
        font-family: 'Orbitron', sans-serif;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .video-card:hover .video-title{
        opacity: 1;
        transform: translateY(0);
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Futuristic Buttons */
    .btn-primary{ 
        display: inline-flex;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 2rem;
        border-radius: 999px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        color: white;
        border: none;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Orbitron', sans-serif;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .btn-primary::before{
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.4), 
            transparent);
        transition: left 0.5s ease;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .btn-primary:hover::before{
        left: 100%;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .btn-primary:hover{
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                    0 0 40px rgba(255, 16, 240, 0.3);
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .btn-primary:focus-visible{
        outline: 2px solid var(--neon-pink);
        outline-offset: 3px;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .btn-secondary{
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: 0.875rem 2rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--grey-dark);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid transparent;
        border-radius: 999px;
        transition: all .3s ease;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: 'Orbitron', sans-serif;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .btn-secondary::before{
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 999px;
        padding: 2px;
        background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0.5;
        transition: opacity 0.3s ease;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .btn-secondary:hover{
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(153, 69, 255, 0.3);
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .btn-secondary:hover::before{
        opacity: 1;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Intro text with glow */
    .intro-text{
        max-width: 48rem;
        margin: 0 auto 3rem;
        text-align: center;
        font-size: 1.125rem;
        line-height: 1.75;
        color: var(--grey-dark);
        padding: 2rem;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .intro-text::before{
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, 
            transparent, 
            rgba(153, 69, 255, 0.05), 
            transparent, 
            rgba(0, 212, 255, 0.05), 
            transparent);
        animation: shimmer 3s linear infinite;
    }
    
    
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* CTA Section with gradient */
    .cta-section{
        padding: 4rem 2rem;
        background: linear-gradient(135deg, 
            rgba(102, 126, 234, 0.1) 0%, 
            rgba(118, 75, 162, 0.1) 25%, 
            rgba(240, 147, 251, 0.1) 50%, 
            rgba(255, 16, 240, 0.1) 75%, 
            rgba(0, 212, 255, 0.1) 100%);
        background-size: 200% 200%;
        animation: gradientShift 15s ease infinite;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 60px rgba(153, 69, 255, 0.15);
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Floating particles effect */
    .content-section{
        position: relative;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples .content-section::after{
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, 
            rgba(153, 69, 255, 0.1) 0%, 
            transparent 70%);
        border-radius: 50%;
        top: 10%;
        right: 5%;
        animation: float 6s ease-in-out infinite;
        pointer-events: none;
    }
    
    
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Section Labels */
    .section-label{
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        background: linear-gradient(90deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
        font-family: 'Orbitron', sans-serif;
    }
    
    body.page-ri-dj-bob-carpenter-wedding-samples /* Mobile adjustments */
    @media (max-width: 768px){
        .header-unit {
            height: clamp(18rem, 65vw, 28rem);
        }
        .video-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .header-overlay h1 {
            font-size: 1.75rem;
        }
        .header-overlay p {
            font-size: 1rem;
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        body.page-ri-dj-bob-carpenter-wedding-samples *{ 
            animation-duration: 0.001ms !important; 
            animation-iteration-count: 1 !important; 
            transition-duration: 0.001ms !important; 
            scroll-behavior: auto !important; 
        }
    }
    
    @media (prefers-color-scheme: dark) {
        body.page-ri-dj-bob-carpenter-wedding-samples{ background: #0b1220; color: #e5e7eb; }
        body.page-ri-dj-bob-carpenter-wedding-samples .video-card{ background: rgba(15, 23, 42, 0.8); border-color: rgba(31, 41, 55, 0.5); }
        body.page-ri-dj-bob-carpenter-wedding-samples .intro-text{ background: rgba(15, 23, 42, 0.8); }
    }

/* ===== Page: sitemap (sitemap.php) ===== */
body.page-sitemap /* Ensure proper UTF-8 rendering */
    @charset "UTF-8";
    
    /* Custom Properties */
    :root{
      --max-width: 1200px;
      --brand-pink: #ec4899;
      --neon-pink: #ff10f0;
      --neon-blue: #00d4ff;
      --neon-purple: #9945ff;
      --grey-dark: #374151;
      --grey-light: #e5e7eb;
      --ink: #0f172a;
      --surface: #ffffff;
      --bg: #f8fafc;
      --ring: rgba(236, 72, 153, 0.28);
      --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
    }
    
    body.page-sitemap /* Base Styles */
    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body.page-sitemap{ scroll-behavior: smooth; }
    
    body.page-sitemap{
      font-family: 'Arimo', sans-serif;
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
      position: relative;
      overflow-x: hidden;
    }
    
    body.page-sitemap /* Animated gradient background */
    body::before{
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, 
        rgba(236, 72, 153, 0.03) 0%, 
        rgba(153, 69, 255, 0.03) 25%, 
        rgba(0, 212, 255, 0.03) 50%, 
        rgba(255, 16, 240, 0.03) 75%, 
        rgba(236, 72, 153, 0.03) 100%);
      background-size: 400% 400%;
      animation: gradientShift 20s ease infinite;
      z-index: -1;
      pointer-events: none;
    }
    
    
    
    @media (prefers-reduced-motion: reduce) {
      body.page-sitemap *{ 
        animation-duration: 0.001ms !important; 
        transition-duration: 0.001ms !important; 
        scroll-behavior: auto !important; 
      }
    }
    
    body.page-sitemap /* Container */
    .container{
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    body.page-sitemap /* Typography with futuristic touch */
    h1, body.page-sitemap h2, body.page-sitemap h3{
      font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
      letter-spacing: 0.5px;
      color: var(--grey-dark);
      margin-bottom: 1rem;
      position: relative;
    }
    
    body.page-sitemap h1{ 
      font-size: clamp(2rem, 3.6vw, 3rem); 
      font-weight: 900; 
      line-height: 1.05;
      background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientText 8s ease infinite;
      background-size: 200% auto;
    }
    
    
    
    body.page-sitemap h2{ 
      font-size: clamp(1.5rem, 2.6vw, 2rem); 
      font-weight: 700; 
      line-height: 1.2;
      background: linear-gradient(90deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    body.page-sitemap h3{ 
      font-size: clamp(1.25rem, 2vw, 1.5rem); 
      font-weight: 700;
      color: var(--grey-dark);
    }
    
    body.page-sitemap p, body.page-sitemap li{ 
      font-size: clamp(1rem, 1.2vw, 1.0625rem); 
      line-height: 1.7; 
    }
    
    body.page-sitemap /* Header Styles with futuristic overlay */
    .page-header{
      background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
      padding: 5rem 0 3rem;
      margin-bottom: 3rem;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    body.page-sitemap .page-header::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, 
        rgba(153, 69, 255, 0.2) 0%, 
        rgba(255, 16, 240, 0.2) 50%, 
        rgba(0, 212, 255, 0.2) 100%);
      opacity: 0.4;
    }
    
    body.page-sitemap .page-header::after{
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 16, 240, 0.05), 
        transparent, 
        rgba(0, 212, 255, 0.05), 
        transparent);
      animation: shimmer 3s linear infinite;
    }
    
    
    
    body.page-sitemap .page-header h1{
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
      color: #fff !important;
    }
    
    body.page-sitemap .page-header .breadcrumb{
      position: relative;
      z-index: 1;
      opacity: 0.9;
    }
    
    body.page-sitemap /* Grid Layout */
    .sitemap-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    body.page-sitemap /* Glassmorphism Card Styles */
    .sitemap-card{
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    
    body.page-sitemap .sitemap-card::before{
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, 
        rgba(255, 16, 240, 0) 0%, 
        rgba(0, 212, 255, 0) 100%);
      transition: all 0.4s ease;
      z-index: -1;
    }
    
    body.page-sitemap .sitemap-card:hover{
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                  0 0 60px rgba(255, 16, 240, 0.1);
      border: 1px solid rgba(255, 16, 240, 0.5);
    }
    
    body.page-sitemap .sitemap-card:hover::before{
      background: linear-gradient(135deg, 
        rgba(255, 16, 240, 0.1) 0%, 
        rgba(0, 212, 255, 0.1) 100%);
    }
    
    body.page-sitemap .sitemap-card h2{
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--brand-pink);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Orbitron', sans-serif;
      background: linear-gradient(90deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    body.page-sitemap .sitemap-card ul{
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    body.page-sitemap .sitemap-card li{
      margin-bottom: 0.75rem;
      padding-left: 1.25rem;
      position: relative;
    }
    
    body.page-sitemap .sitemap-card li::before{
      content: "✦";
      position: absolute;
      left: 0;
      background: linear-gradient(135deg, #667eea, #f093fb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
      font-size: 1.25rem;
    }
    
    body.page-sitemap .sitemap-card a{
      color: var(--grey-dark);
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 500;
      position: relative;
    }
    
    body.page-sitemap .sitemap-card a:hover{
      background: linear-gradient(90deg, #ff10f0, #00d4ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      padding-left: 4px;
    }
    
    body.page-sitemap /* Meta Information */
    .meta-info{
      font-size: 0.75rem;
      color: var(--grey-dark);
      margin-left: 0.5rem;
      font-weight: 400;
      opacity: 0.7;
    }
    
    body.page-sitemap /* XML Sitemap Notice - Futuristic Style */
    .xml-notice{
      background: linear-gradient(135deg, 
        rgba(255, 243, 199, 0.8) 0%, 
        rgba(253, 230, 138, 0.8) 100%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(245, 158, 11, 0.5);
      border-radius: 20px;
      padding: 1rem 1.5rem;
      margin: 2rem 0;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    body.page-sitemap .xml-notice::before{
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, 
        transparent, 
        rgba(245, 158, 11, 0.1), 
        transparent);
      animation: shimmer 3s linear infinite;
    }
    
    body.page-sitemap .xml-notice-icon{
      font-size: 1.5rem;
      position: relative;
      z-index: 1;
    }
    
    body.page-sitemap .xml-notice-content{
      flex: 1;
      position: relative;
      z-index: 1;
    }
    
    body.page-sitemap .xml-notice-content p{
      margin: 0;
      color: #92400e;
      font-weight: 500;
    }
    
    body.page-sitemap .xml-notice-content a{
      background: linear-gradient(90deg, #d97706, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    body.page-sitemap .xml-notice-content a:hover{
      text-decoration: underline;
    }
    
    body.page-sitemap /* Skip to Content Link */
    .skip-link{
      position: absolute;
      top: -40px;
      left: 0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      color: white;
      padding: 0.5rem 1rem;
      text-decoration: none;
      border-radius: 999px;
      z-index: 100;
      font-family: 'Orbitron', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      box-shadow: 0 0 20px rgba(153, 69, 255, 0.4);
    }
    
    body.page-sitemap .skip-link:focus{
      top: 16px;
      left: 16px;
    }
    
    body.page-sitemap /* Fade-in Animation */
    
    
    .fade-in{
      animation: fadeIn 1s ease-out forwards;
    }
    
    body.page-sitemap /* Floating particles effect */
    .container::after{
      content: "";
      position: absolute;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, 
        rgba(153, 69, 255, 0.1) 0%, 
        transparent 70%);
      border-radius: 50%;
      top: 10%;
      right: 5%;
      animation: float 6s ease-in-out infinite;
      pointer-events: none;
    }
    
    
    
    body.page-sitemap /* Service Areas Section */
    .service-areas-section{
      background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(240, 147, 251, 0.05) 100%);
      position: relative;
      overflow: hidden;
    }
    
    body.page-sitemap /* Responsive Design */
    @media (max-width: 768px){
      .page-header h1 {
        font-size: 1.875rem;
      }
      
      .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .sitemap-card {
        padding: 1.25rem;
      }
    }
    
    body.page-sitemap /* Print Styles */
    @media print{
      .page-header {
        background: none;
        color: black;
        padding: 1rem 0;
      }
      
      .sitemap-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
      }
    }
    
    body.page-sitemap /* Accessibility: Focus Styles */
    a:focus, body.page-sitemap button:focus{
      outline: 2px solid var(--neon-pink);
      outline-offset: 3px;
      box-shadow: 0 0 20px rgba(255, 16, 240, 0.3);
    }
    
    body.page-sitemap /* Loading State */
    .loading{
      opacity: 0.6;
      pointer-events: none;
    }
    
    body.page-sitemap /* Dark mode support */
    @media (prefers-color-scheme: dark){
      body { 
        background: #0b1220; 
        color: #e5e7eb; 
      }
      .sitemap-card { 
        background: rgba(15, 23, 42, 0.8); 
        border-color: rgba(31, 41, 55, 0.5); 
      }
      .xml-notice { 
        background: rgba(15, 23, 42, 0.8); 
      }
    }

/* ===== Page: terms-of-service (terms-of-service.php) ===== */
body.page-terms-of-service{
            --brand-pink: #ec4899;
            --brand-pink-dark: #db2777;
            --grey-dark: #374151;
            --grey-light: #e5e7eb;
            --ink: #0f172a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --ring: rgba(236, 72, 153, 0.28);
        }
        
        body.page-terms-of-service{
            font-family: 'Arimo', sans-serif;
            color: var(--ink);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            line-height: 1.7;
            background: var(--bg);
        }
        
        body.page-terms-of-service .section-title{
            font-family: 'Alegreya Sans SC', sans-serif;
        }
        
        body.page-terms-of-service #contact_info{
            line-height: 32px;
            padding: 1rem 0;
            font-size: 1.1rem;
            font-weight: 300;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid var(--grey-light);
        }
        
        body.page-terms-of-service #contact_info span{
            display: inline-block;
            margin: 0 10px;
        }
        
        body.page-terms-of-service .terms-link{
            color: var(--brand-pink);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        body.page-terms-of-service .terms-link:hover{
            color: var(--brand-pink-dark);
            text-decoration: underline;
        }
        
        body.page-terms-of-service .terms-section{
            margin-bottom: 2.5rem;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        
        body.page-terms-of-service .terms-section h2{
            color: var(--grey-dark);
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--brand-pink);
        }
        
        body.page-terms-of-service .terms-section h3{
            color: var(--grey-dark);
            font-size: 1.25rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        
        body.page-terms-of-service .terms-section ul{
            list-style: none;
            padding-left: 0;
        }
        
        body.page-terms-of-service .terms-section li{
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        body.page-terms-of-service .terms-section li::before{
            content: "•";
            color: var(--brand-pink);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        body.page-terms-of-service .highlight-box{
            background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
            border-left: 4px solid var(--brand-pink);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        
        body.page-terms-of-service .last-updated{
            background-color: #f1f5f9;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            body.page-terms-of-service #contact_info{
                line-height: 1.8;
                padding: 1rem;
            }
            
            body.page-terms-of-service #contact_info span{
                display: block;
                margin: 0.5rem 0;
            }
            
            body.page-terms-of-service .terms-section{
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
        }
        
        body.page-terms-of-service /* Accessibility */
        .sr-only{
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }
        
        body.page-terms-of-service .sr-only:focus{
            position: absolute;
            width: auto;
            height: auto;
            padding: 0.5rem 1rem;
            margin: 0;
            overflow: visible;
            clip: auto;
            white-space: normal;
            background: white;
            border: 2px solid var(--brand-pink);
            border-radius: 8px;
            top: 1rem;
            left: 1rem;
            z-index: 1000;
        }

/* ===== Page: wedding-process (wedding-process.php) ===== */
body.page-wedding-process{ 
    --brand-pink: #ec4899;
    --neon-pink: #ff10f0;
    --neon-blue: #00d4ff;
    --neon-purple: #9945ff;
    --grey-dark: #374151;
    --grey-light: #e5e7eb;
    --ink: #0f172a;
    --surface: #ffffff;
    --bg: #f8fafc;
    --ring: rgba(236, 72, 153, 0.28);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
} 

body.page-wedding-process{ scroll-behavior: smooth; }

body.page-wedding-process{ 
    font-family: 'Arimo', sans-serif; 
    background: var(--bg); 
    color: var(--ink); 
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

body.page-wedding-process /* Animated gradient background */
body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(236, 72, 153, 0.03) 0%, 
        rgba(153, 69, 255, 0.03) 25%, 
        rgba(0, 212, 255, 0.03) 50%, 
        rgba(255, 16, 240, 0.03) 75%, 
        rgba(236, 72, 153, 0.03) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: -1;
    pointer-events: none;
}



body.page-wedding-process /* Typography with futuristic touch */
h1, body.page-wedding-process h2, body.page-wedding-process h3{
    font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
    letter-spacing: 0.5px;
    color: var(--grey-dark);
    position: relative;
}

body.page-wedding-process h1{ 
    font-size: clamp(2rem, 3.6vw, 3rem); 
    font-weight: 900; 
    line-height: 1.05;
    background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 8s ease infinite;
    background-size: 200% auto;
}



body.page-wedding-process h2{ 
    font-size: clamp(1.5rem, 2.6vw, 2rem); 
    font-weight: 700; 
    line-height: 1.2;
}

body.page-wedding-process h3{ 
    font-size: clamp(1.25rem, 2vw, 1.5rem); 
    font-weight: 700;
}

body.page-wedding-process /* Hero Section with futuristic overlay */
.hero-section{
    position: relative;
    overflow: hidden;
    background: #000;
}

body.page-wedding-process .hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to b, 
        rgba(0,0,0,0.2), 
        rgba(15, 12, 41, 0.7),
        rgba(48, 43, 99, 0.8),
        rgba(36, 36, 62, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 3rem 2rem;
}

body.page-wedding-process .hero-content h1{
    color: #fff !important;
    text-shadow: 0 0 40px rgba(255, 16, 240, 0.5);
}

body.page-wedding-process .hero-content p{
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

body.page-wedding-process /* Glassmorphism cards with futuristic styling */
.step-card{ 
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

body.page-wedding-process .step-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 16, 240, 0) 0%, 
        rgba(0, 212, 255, 0) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

body.page-wedding-process .step-card:hover{
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3),
                0 0 60px rgba(255, 16, 240, 0.1);
    border: 1px solid rgba(255, 16, 240, 0.5);
}

body.page-wedding-process .step-card:hover::before{
    background: linear-gradient(135deg, 
        rgba(255, 16, 240, 0.1) 0%, 
        rgba(0, 212, 255, 0.1) 100%);
}

body.page-wedding-process .step-number{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 20px rgba(153, 69, 255, 0.4);
}

body.page-wedding-process .step-card h3{
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
}

body.page-wedding-process /* Section headers with gradient */
.section-header{
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 8s ease infinite;
    background-size: 200% auto;
}

body.page-wedding-process /* Enhanced benefit cards */
.benefit-section{
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(240, 147, 251, 0.05) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

body.page-wedding-process .benefit-section::after{
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, 
        rgba(255, 16, 240, 0.1) 0%, 
        transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}



body.page-wedding-process /* Futuristic buttons */
.btn-primary{ 
    display: inline-flex; 
    gap: .5rem; 
    align-items: center; 
    justify-content: center; 
    padding: 1rem 2.5rem; 
    border-radius: 999px; 
    font-weight: 700; 
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

body.page-wedding-process .btn-primary::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
}

body.page-wedding-process .btn-primary:hover::before{
    left: 100%;
}

body.page-wedding-process .btn-primary:hover{ 
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                0 0 40px rgba(255, 16, 240, 0.3);
}

body.page-wedding-process .btn-secondary{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

body.page-wedding-process .btn-secondary:hover{
    border-color: var(--neon-pink);
    background: rgba(255, 16, 240, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 16, 240, 0.3);
}

body.page-wedding-process /* Enhancement cards with glassmorphism */
.enhancement-card{
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

body.page-wedding-process .enhancement-card::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(153, 69, 255, 0.05), 
        transparent, 
        rgba(0, 212, 255, 0.05), 
        transparent);
    animation: shimmer 3s linear infinite;
}



body.page-wedding-process .enhancement-card:hover{
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(240, 147, 251, 0.1) 100%);
    box-shadow: 0 20px 40px rgba(153, 69, 255, 0.2);
    border-color: rgba(255, 16, 240, 0.5);
}

body.page-wedding-process .enhancement-card h3{
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

body.page-wedding-process .enhancement-link{
    color: var(--neon-purple);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.page-wedding-process .enhancement-link:hover{
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 16, 240, 0.5);
    transform: translateX(5px);
}

body.page-wedding-process /* CTA Section with gradient */
.cta-gradient{
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 1) 0%, 
        rgba(118, 75, 162, 1) 25%, 
        rgba(240, 147, 251, 1) 50%, 
        rgba(245, 87, 108, 1) 100%);
    animation: gradientShift 10s ease infinite;
    background-size: 300% 300%;
    position: relative;
    overflow: hidden;
}

body.page-wedding-process .cta-gradient::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

body.page-wedding-process .cta-content{
    position: relative;
    z-index: 1;
}

body.page-wedding-process /* List items with neon checkmarks */
.benefit-list li{
    position: relative;
    padding-left: 2rem;
}

body.page-wedding-process .benefit-list li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    font-size: 1.2rem;
    top: -2px;
}

body.page-wedding-process /* Mobile responsiveness */
@media (max-width: 768px){
    .step-card {
        padding: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1.25rem;
    }
    
    .hero-overlay {
        padding: 2rem 1rem;
    }
}

body.page-wedding-process .skip-to-content{ 
    position: absolute; 
    left: -9999px; 
    top: -9999px; 
} 

body.page-wedding-process .skip-to-content:focus{ 
    left: 1rem; 
    top: 1rem; 
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff; 
    padding: .75rem 1.25rem; 
    border-radius: 999px; 
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.4);
}

@media (prefers-reduced-motion: reduce) { 
    body.page-wedding-process *{ 
        animation-duration: 0.001ms !important; 
        animation-iteration-count: 1 !important; 
        transition-duration: 0.001ms !important; 
        scroll-behavior: auto !important; 
    } 
}

@media (prefers-color-scheme: dark) {
    body.page-wedding-process{ background: #0b1220; color: #e5e7eb; }
    body.page-wedding-process .step-card, body.page-wedding-process .enhancement-card{ 
        background: rgba(15, 23, 42, 0.8); 
        border-color: rgba(31, 41, 55, 0.5); 
    }
}

/* ===== Page: photo-booth-ri-ma (photo-booth-ri-ma.php) ===== */
body.page-photo-booth-ri-ma{
        --brand-pink: #ec4899;
        --neon-pink: #ff10f0;
        --neon-blue: #00d4ff;
        --neon-purple: #9945ff;
        --grey-dark: #374151;
        --grey-light: #e5e7eb;
        --ink: #0f172a;
        --surface: #ffffff;
        --bg: #f8fafc;
        --ring: rgba(236, 72, 153, 0.28);
        --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        --gradient-dark: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
    }

    body.page-photo-booth-ri-ma{ scroll-behavior: smooth; }
    body.page-photo-booth-ri-ma{
        font-family: 'Arimo', sans-serif;
        background: var(--bg);
        color: var(--ink);
        -webkit-font-smoothing: antialiased;
        margin: 0;
        padding: 0;
        position: relative;
        overflow-x: hidden;
    }

    body.page-photo-booth-ri-ma /* Animated gradient background */
    body::before{
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, 
            rgba(236, 72, 153, 0.03) 0%, 
            rgba(153, 69, 255, 0.03) 25%, 
            rgba(0, 212, 255, 0.03) 50%, 
            rgba(255, 16, 240, 0.03) 75%, 
            rgba(236, 72, 153, 0.03) 100%);
        background-size: 400% 400%;
        animation: gradientShift 20s ease infinite;
        z-index: -1;
        pointer-events: none;
    }

    

    @media (prefers-reduced-motion: reduce) {
        body.page-photo-booth-ri-ma *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    }

    body.page-photo-booth-ri-ma /* Typography */
    h1, body.page-photo-booth-ri-ma h2, body.page-photo-booth-ri-ma h3{
        font-family: 'Orbitron', 'Alegreya Sans SC', sans-serif;
        letter-spacing: 0.5px;
        color: var(--grey-dark);
    }
    body.page-photo-booth-ri-ma h1{ 
        font-size: clamp(2rem, 3.6vw, 3.5rem); 
        font-weight: 900; 
        line-height: 1.1;
        background: linear-gradient(90deg, #a5b4fc, #c084fc, #f9a8d4, #fbbf24);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientText 8s ease infinite;
        background-size: 200% auto;
    }
    
    body.page-photo-booth-ri-ma h2{ font-size: clamp(1.75rem, 2.8vw, 2.5rem); font-weight: 700; line-height: 1.2; }
    body.page-photo-booth-ri-ma h3{ font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
    body.page-photo-booth-ri-ma p, body.page-photo-booth-ri-ma li{ font-size: clamp(1rem, 1.2vw, 1.0625rem); line-height: 1.7; }

    body.page-photo-booth-ri-ma /* Hero Section */
    .hero-section{
        position: relative;
        width: 100%;
        height: clamp(24rem, 70vh, 45rem);
        overflow: hidden;
        background: #000;
    }
    body.page-photo-booth-ri-ma .hero-image{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    body.page-photo-booth-ri-ma .hero-overlay{
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.65));
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        padding: 2rem;
        transition: all 1s ease;
        z-index: 10;
    }
    body.page-photo-booth-ri-ma .hero-overlay h1{
        color: #fff !important;
    }

    body.page-photo-booth-ri-ma /* Buttons */
    .btn-primary{
        display: inline-flex;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
        border-radius: 999px;
        font-weight: 700;
        text-decoration: none;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        color: white;
        box-shadow: 0 8px 20px rgba(153, 69, 255, 0.4);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        font-family: 'Orbitron', sans-serif;
    }
    body.page-photo-booth-ri-ma .btn-primary::before{
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s ease;
    }
    body.page-photo-booth-ri-ma .btn-primary:hover::before{
        left: 100%;
    }
    body.page-photo-booth-ri-ma .btn-primary:hover{
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                    0 0 40px rgba(255, 16, 240, 0.3);
    }
    body.page-photo-booth-ri-ma .btn-primary:focus-visible{
        outline: 2px solid var(--neon-pink);
        outline-offset: 3px;
    }
    body.page-photo-booth-ri-ma .btn-secondary{
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        font-weight: 700;
        text-decoration: none;
        color: white;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 999px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        font-family: 'Orbitron', sans-serif;
    }
    body.page-photo-booth-ri-ma .btn-secondary::before{
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s ease;
    }
    body.page-photo-booth-ri-ma .btn-secondary:hover::before{
        left: 100%;
    }
    body.page-photo-booth-ri-ma .btn-secondary:hover{
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 30px rgba(153, 69, 255, 0.4),
                    0 0 40px rgba(255, 16, 240, 0.3);
    }

    body.page-photo-booth-ri-ma /* Backdrop Grid */
    .backdrop-grid{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    body.page-photo-booth-ri-ma .backdrop-grid img{
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(255, 16, 240, 0.3);
        transition: transform 0.3s ease;
    }
    body.page-photo-booth-ri-ma .backdrop-grid img:hover{
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 16, 240, 0.3);
    }

    body.page-photo-booth-ri-ma /* Props Grid */
    .props-grid{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
    body.page-photo-booth-ri-ma .props-grid img{
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(255, 16, 240, 0.3);
        transition: transform 0.3s ease;
    }
    body.page-photo-booth-ri-ma .props-grid img:hover{
        transform: scale(1.05);
    }

    body.page-photo-booth-ri-ma /* Feature Grid */
    .feature-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    body.page-photo-booth-ri-ma .feature-card{
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    body.page-photo-booth-ri-ma .feature-card:hover{
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(153, 69, 255, 0.3);
    }

    body.page-photo-booth-ri-ma /* Pricing Grid */
    .pricing-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    body.page-photo-booth-ri-ma .pricing-card{
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    body.page-photo-booth-ri-ma .pricing-card.featured{
        border: 2px solid var(--neon-pink);
        box-shadow: 0 0 40px rgba(255, 16, 240, 0.3);
    }
    body.page-photo-booth-ri-ma .pricing-card:hover{
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(153, 69, 255, 0.3);
    }
    body.page-photo-booth-ri-ma .pricing-card h3{
        background: linear-gradient(90deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    body.page-photo-booth-ri-ma .package-price{
        font-size: 2.5rem;
        font-weight: 900;
        background: linear-gradient(90deg, #a5b4fc, #c084fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    body.page-photo-booth-ri-ma /* Video Frame */
    .video-frame{
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 0 30px rgba(255, 16, 240, 0.3);
        border: 2px solid rgba(255, 16, 240, 0.2);
        max-width: 640px;
        margin: auto;
    }
    body.page-photo-booth-ri-ma .video-frame iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    body.page-photo-booth-ri-ma /* FAQ Section */
    .faq-card{
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        padding: 1.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    body.page-photo-booth-ri-ma .faq-card:hover{
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(153, 69, 255, 0.3);
    }

    @media (prefers-color-scheme: dark) {
        body.page-photo-booth-ri-ma{ background: #0b1220; color: #e5e7eb; }
        body.page-photo-booth-ri-ma .pricing-card, body.page-photo-booth-ri-ma .feature-card, body.page-photo-booth-ri-ma .faq-card{ 
            background: rgba(15, 23, 42, 0.8); 
            border-color: rgba(31, 41, 55, 0.5); 
        }
    }

    body.page-photo-booth-ri-ma .skip-to-content{
        position: absolute;
        left: -9999px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }
    body.page-photo-booth-ri-ma .skip-to-content:focus{
        left: 16px;
        top: 16px;
        width: auto;
        height: auto;
        background: #fff;
        padding: 8px 12px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        z-index: 9999;
    }

    body.page-photo-booth-ri-ma /* Fade-in Animation */
    
    .fade-in{
        animation: fadeIn 1s ease-out forwards;
    }




/* ================================================
   HERO / HEADER VIDEO RESPONSIVE FIX (MOBILE)
   Matches Main Event Weddings behavior.
   Reason: global media {max-width:100%} clamps oversized
   hero iframes and breaks "cover" behavior on phones.
   ================================================ */

/* Allow hero/header iframes to exceed container when needed for "cover" scaling */
:where(.hero-video-iframe,
       .hero-video-wrap iframe,
       .hero-video-container iframe,
       .header-video,
       .header-video iframe,
       .page-hero iframe,
       .hero iframe) {
  max-width: none !important;
  max-height: none !important;
}

/* Prevent inline-gap + ensure transforms behave consistently */
:where(.hero-video-iframe,
       .hero-video-wrap iframe,
       .hero-video-container iframe,
       .header-video) {
  display: block;
}

/* iOS Safari: keep the hero video stable + avoid 100vw quirks */
@supports (-webkit-touch-callout: none) {
  :where(.hero-video-iframe,
         .hero-video-wrap iframe,
         .hero-video-container iframe,
         .header-video) {
    transform: translate(-50%, -50%) translateZ(0);
    will-change: transform;
  }
}


/* ===========================
   Availability CTA buttons
   Shown after a successful date check
   =========================== */
body.page-home .availability-cta{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

body.page-home .availability-cta .btn-primary,
body.page-home .availability-cta .btn-secondary{
    flex: 1 1 180px;
}

/* Ensure <button> CTAs match the anchor button styling */
body.page-home .availability-cta button.btn-primary,
body.page-home .availability-cta button.btn-secondary{
    -webkit-appearance: none;
    appearance: none;
    font: inherit;
}

/* Secondary button style for home page (pairs with .btn-primary) */
body.page-home .btn-secondary{
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255,255,255,0.9);
    color: var(--grey-dark);
    border: 2px solid rgba(102, 126, 234, 0.35);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.08);
}
body.page-home .btn-secondary:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(153, 69, 255, 0.14);
}
