/* ==========================================================================
   RupKareng Luxury Salon, Spa & Tattoo Studio
   Theme: Premium Obsidian Black, Crisp White & Crimson Ruby Red
   ========================================================================== */

:root {
    --bg-main: #08080a;
    --bg-surface: #0f0f14;
    --bg-card: #14141b;
    --bg-card-hover: #1a1a24;
    --bg-glass: rgba(18, 18, 24, 0.8);
    
    /* Red Palette */
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-300: #fca5a5;
    --red-400: #f87171;
    --red-500: #e61937;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    --red-gradient: linear-gradient(135deg, #ff2e50 0%, #e61937 50%, #990f23 100%);
    --red-glow: 0 0 28px rgba(230, 25, 55, 0.38);
    --red-glow-lg: 0 0 45px rgba(230, 25, 55, 0.55);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #d4d4d8;
    --text-muted: #8c8c96;

    /* Borders */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-red: rgba(230, 25, 55, 0.38);
    --border-red-subtle: rgba(230, 25, 55, 0.2);

    /* Fonts */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #08080a;
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e61937;
}

/* Typography */
.font-serif {
    font-family: var(--font-serif);
}
.font-sans {
    font-family: var(--font-sans);
}

/* Background Grids & Patterns */
.bg-grid-pattern {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Announcement Bar */
.announcement-bar {
    background: #0b0b0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Header & Navigation */
.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, #261619, #0f0a0c);
    border: 1px solid rgba(230, 25, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 15px rgba(230, 25, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.group:hover .logo-mark {
    transform: scale(1.05);
    border-color: #ff2e50;
    box-shadow: 0 6px 20px rgba(230, 25, 55, 0.4);
}

.nav-link {
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-gradient);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-link {
    color: var(--text-secondary);
    padding: 8px 0;
    font-size: 1.1rem;
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover {
    color: #ff4d6d;
    padding-left: 6px;
}

.header-logo-img {
    height: 48px;
    max-height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(230, 25, 55, 0.45));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.group:hover .header-logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 24px rgba(230, 25, 55, 0.7));
}

.social-header-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.social-header-icon:hover {
    color: #ffffff;
    background: rgba(230, 25, 55, 0.2);
    border-color: var(--border-red);
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(230, 25, 55, 0.3);
}

/* Authentic Instagram & Facebook Like/Follow Buttons */
.btn-insta-like {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 3px 12px rgba(220, 39, 67, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-insta-like:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6), 0 0 12px rgba(240, 148, 51, 0.45);
    filter: brightness(1.08);
}

.btn-fb-like {
    background: linear-gradient(135deg, #1877F2 0%, #0d65d9 100%);
    color: #ffffff !important;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 3px 12px rgba(24, 119, 242, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-fb-like:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.65);
    filter: brightness(1.08);
}

.social-like-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.22);
    padding: 0.12rem 0.45rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

/* Premium Buttons */
.btn-primary {
    background: var(--red-gradient);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(230, 25, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 25, 55, 0.55);
    filter: brightness(1.1);
}

.btn-primary-lg {
    background: var(--red-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 25px rgba(230, 25, 55, 0.4);
}

.btn-primary-lg:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 32px rgba(230, 25, 55, 0.6);
}

.btn-primary-sm {
    background: var(--red-gradient);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.btn-primary-sm:hover {
    box-shadow: 0 4px 15px rgba(230, 25, 55, 0.45);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(230, 25, 55, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary-lg {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.btn-secondary-lg:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-red);
    transform: translateY(-2px);
}

.btn-red {
    background: rgba(230, 25, 55, 0.15);
    color: #ff4d6d;
    border: 1px solid var(--border-red);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-red:hover {
    background: var(--red-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(230, 25, 55, 0.4);
}

/* Hero Section */
.hero-image-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 6px;
    background: linear-gradient(135deg, rgba(230, 25, 55, 0.45), rgba(255, 255, 255, 0.05), rgba(230, 25, 55, 0.15));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(230, 25, 55, 0.2);
}

.glass-badge {
    background: rgba(18, 18, 24, 0.85);
    border: 1px solid rgba(230, 25, 55, 0.35);
    backdrop-filter: blur(12px);
}

/* Service Category Tabs */
.service-tab {
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}

.service-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(230, 25, 55, 0.3);
}

.service-tab.active {
    background: var(--red-gradient);
    color: #ffffff;
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(230, 25, 55, 0.4);
}

/* Service Cards */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 25, 55, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(230, 25, 55, 0.18);
    background: var(--bg-card-hover);
}

.service-card.featured-service {
    background: linear-gradient(145deg, #1c1418, #14141b);
    border-color: rgba(230, 25, 55, 0.45);
}

.service-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.service-tag.featured {
    background: rgba(230, 25, 55, 0.2);
    color: #ff6b81;
    border-color: var(--border-red);
}

.service-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ff385c;
    font-family: var(--font-sans);
}

.service-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-book-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(230, 25, 55, 0.15);
    border: 1px solid rgba(230, 25, 55, 0.35);
    padding: 0.45rem 0.95rem;
    border-radius: 9999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.25s ease;
}

.service-book-btn:hover {
    background: var(--red-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(230, 25, 55, 0.45);
}

/* Feature Experience Boxes */
.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--border-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(230, 25, 55, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(230, 25, 55, 0.12);
    border: 1px solid rgba(230, 25, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #ff385c;
}

/* Gallery Elements */
.gallery-pill {
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-pill:hover, .gallery-pill.active {
    background: var(--red-gradient);
    color: #ffffff;
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(230, 25, 55, 0.35);
}

.gallery-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-light);
    background: #121216;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.25rem;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(230, 25, 55, 0.4);
    backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(230, 25, 55, 0.35);
    transform: translateY(-2px);
}

/* FAQ Accordion */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item.active {
    border-color: rgba(230, 25, 55, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 1.25rem;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* Floating Action Dock */
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.call-btn {
    background: #14141a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.call-btn:hover {
    border-color: #ff385c;
    color: #ff385c;
    box-shadow: 0 0 20px rgba(230, 25, 55, 0.4);
}

.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #20ba59;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.book-btn {
    background: var(--red-gradient);
    color: #ffffff;
    border: none;
}

.book-btn:hover {
    box-shadow: 0 0 30px rgba(230, 25, 55, 0.7);
}

.floating-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #14141a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Footer Elements */
.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--red-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 25, 55, 0.4);
}

.footer-social-btn.facebook {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.3);
    color: #1877F2;
}

.footer-social-btn.facebook:hover {
    background: #1877F2;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.6);
}

.footer-social-btn.instagram {
    background: rgba(220, 39, 67, 0.15);
    border-color: rgba(220, 39, 67, 0.3);
    color: #f43f5e;
}

.footer-social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(220, 39, 67, 0.6);
}

.footer-social-btn.whatsapp {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.footer-social-btn.whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6);
}

/* Form Styles */
.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    background: #181822;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.85rem;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: #ff385c;
    box-shadow: 0 0 0 3px rgba(230, 25, 55, 0.25);
}

/* Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Story Highlights Circles */
.story-circle-ring {
    padding: 2.5px;
    border-radius: 9999px;
    background: linear-gradient(45deg, #ff2e50 0%, #e61937 50%, #990f23 100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-circle-ring:hover {
    transform: scale(1.08);
}

/* Video Reels Cards */
.reel-card {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    background: #14141b;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 25, 55, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 25px rgba(230, 25, 55, 0.25);
}

.reel-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 14;
    overflow: hidden;
}

.reel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:hover .reel-img {
    transform: scale(1.08);
}

.reel-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.3s ease;
}

.reel-card:hover .reel-backdrop {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.reel-play-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(230, 25, 55, 0.55);
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.reel-card:hover .reel-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 0 35px rgba(230, 25, 55, 0.85);
}

/* Pricing Table styling */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
}

.pricing-table th {
    background: #191924;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: #ffffff;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: rgba(230, 25, 55, 0.05);
}

/* ==========================================================================
   Top Bar Social Buttons (Upside of Navigation)
   ========================================================================== */
.topbar-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    cursor: pointer;
}

.topbar-social-btn.fb {
    background: rgba(24, 119, 242, 0.18);
    color: #58a6ff;
    border-color: rgba(24, 119, 242, 0.4);
}

.topbar-social-btn.fb:hover {
    background: #1877F2;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(24, 119, 242, 0.7);
    transform: translateY(-1px) scale(1.04);
}

.topbar-social-btn.ig {
    background: rgba(220, 39, 67, 0.18);
    color: #ff6e8a;
    border-color: rgba(220, 39, 67, 0.4);
}

.topbar-social-btn.ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(220, 39, 67, 0.7);
    transform: translateY(-1px) scale(1.04);
}

.topbar-social-btn.wa {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.35);
}

.topbar-social-btn.wa:hover {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.7);
    transform: translateY(-1px) scale(1.04);
}

/* ==========================================================================
   Lighting & Electric Neon Intro Animation Experience
   ========================================================================== */
#lightning-intro {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #040406;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s ease;
    user-select: none;
}

#lightning-intro.intro-hidden {
    opacity: 0;
    transform: scale(1.08);
    pointer-events: none;
}

/* Lighting Flash Background */
.lightning-flash-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 46, 80, 0.25) 0%, rgba(230, 25, 55, 0.1) 40%, rgba(4, 4, 6, 0.95) 75%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.flash-active .lightning-flash-bg {
    animation: electricFlicker 1.4s ease-in-out forwards;
}

/* Screen Flash White/Neon Overlay */
.lightning-flash-white {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 46, 80, 0.5) 45%, transparent 80%);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.flash-active .lightning-flash-white {
    animation: lightningBoltFlash 0.6s ease-out forwards;
}

/* Intro Content Container */
.intro-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    max-width: 600px;
    width: 90%;
}

/* Animated Lightning Bolt SVGs */
.lightning-bolt-container {
    position: absolute;
    inset: -60px;
    pointer-events: none;
    z-index: 5;
}

.lightning-bolt-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 18px #ff2e50) drop-shadow(0 0 35px #ffffff);
    opacity: 0;
}

.flash-active .lightning-bolt-svg {
    animation: boltStrike 0.8s ease-in-out forwards;
}

/* Logo in Intro */
.intro-logo-wrapper {
    position: relative;
    padding: 1.5rem;
    display: inline-block;
}

.intro-logo-img {
    height: 72px;
    max-width: 90vw;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(230, 25, 55, 0.8)) drop-shadow(0 0 60px rgba(255, 46, 80, 0.6));
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.flash-active .intro-logo-img {
    opacity: 1;
    transform: scale(1);
    animation: logoGlowPulse 1.2s ease-in-out infinite alternate;
}

/* Light Sweep Laser Beam across Logo */
.light-streak-beam {
    position: absolute;
    top: -20%;
    left: -120%;
    width: 60%;
    height: 140%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 46, 80, 0.8) 70%,
        transparent 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    filter: blur(4px);
    opacity: 0;
}

.flash-active .light-streak-beam {
    animation: lightStreakSweep 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}

/* Expanding Neon Shockwave Rings */
.neon-shockwave-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(255, 46, 80, 0.9);
    box-shadow: 0 0 25px #ff2e50, inset 0 0 25px #ff2e50;
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
    pointer-events: none;
}

.flash-active .neon-shockwave-ring {
    animation: shockwaveExpand 1.1s cubic-bezier(0.1, 0.8, 0.3, 1) 0.25s forwards;
}

.neon-shockwave-ring.secondary {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 35px #ffffff;
    animation-delay: 0.45s;
}

/* Subtitle and Badge in Intro */
.intro-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 46, 80, 0.8), 0 0 30px rgba(230, 25, 55, 0.5);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.5s;
}

.flash-active .intro-tagline {
    opacity: 1;
    transform: translateY(0);
}

.intro-location-badge {
    margin-top: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    background: rgba(230, 25, 55, 0.15);
    border: 1px solid rgba(255, 46, 80, 0.4);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffa5b6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.65s;
}

.flash-active .intro-location-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Tap to Enter Hint */
.intro-skip-hint {
    margin-top: 1.5rem;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Keyframes for Lightning & Light Effects */
@keyframes lightningBoltFlash {
    0% { opacity: 0; }
    15% { opacity: 0.95; }
    30% { opacity: 0.2; }
    45% { opacity: 1; }
    60% { opacity: 0.4; }
    80% { opacity: 0.85; }
    100% { opacity: 0; }
}

@keyframes electricFlicker {
    0% { opacity: 0; }
    10% { opacity: 0.6; }
    20% { opacity: 0.1; }
    35% { opacity: 0.9; }
    50% { opacity: 0.3; }
    65% { opacity: 1; }
    85% { opacity: 0.7; }
    100% { opacity: 0.85; }
}

@keyframes boltStrike {
    0% { opacity: 0; transform: scaleY(0.1); }
    10% { opacity: 1; transform: scaleY(1); }
    25% { opacity: 0.2; }
    40% { opacity: 1; }
    60% { opacity: 0.5; }
    75% { opacity: 0.9; }
    100% { opacity: 0; }
}

@keyframes lightStreakSweep {
    0% { left: -120%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 160%; opacity: 0; }
}

@keyframes shockwaveExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(4.5);
        opacity: 0;
    }
}

@keyframes logoGlowPulse {
    0% {
        filter: drop-shadow(0 0 25px rgba(230, 25, 55, 0.75)) drop-shadow(0 0 50px rgba(255, 46, 80, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(230, 25, 55, 1)) drop-shadow(0 0 80px rgba(255, 46, 80, 0.8)) drop-shadow(0 0 100px #ffffff);
    }
}

/* Mobile Experience Tweaks */
@media (max-width: 640px) {
    .announcement-bar {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    
    .topbar-social-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.68rem;
    }

    .intro-logo-img {
        height: 52px;
    }

    .intro-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
}
