@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;700&display=swap');

html {
    max-width: 100%;
    overflow-x: clip;
    scrollbar-width: thin;
    scrollbar-color: #7E22CE transparent;
}

:root {
    --noir-950: #020617;
    /* Deep Obsidian */
    --noir-900: #0f172a;
    --noir-800: #1e293b;
    --noir-50: #fafafa;
    /* Pearl White */
    --luxury-gold: #c5a059;
    --luxury-gold-soft: #e5d5b7;
    --silk-white: rgba(255, 255, 255, 0.45);
    --silk-border: rgba(255, 255, 255, 0.95);
    --mist-glow: radial-gradient(circle at center, rgba(238, 242, 255, 0.9) 0%, transparent 85%);
    --zenith-glow: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    --primary-color: var(--noir-950);
    --ultra-thin-border: 0.5px solid rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    background-color: #ffffff;
    background-image:
        radial-gradient(#e2e8f0 0.5px, transparent 0.5px),
        radial-gradient(#e2e8f0 0.5px, #ffffff 0.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    color: var(--noir-900);
    overflow-x: visible;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 100;
}

.serif {
    font-family: 'Outfit', sans-serif;
}

/* Strict Mobile Containment to prevent horizontal gap/shifting */
@media (max-width: 767px) {

    html,
    body {
        position: relative;
        overflow-x: clip !important;
        width: 100%;
        max-width: 100%;
    }
}

/* Global Scrollbar Customization */
*::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #7E22CE, #4F46E5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #6b21a8, #4338ca);
}

/* Global Input Text Size Override */
input,
select,
textarea {
    font-size: 1.125rem !important;
    /* 18px (Tailwind text-lg) */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes breathing {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.animate-breathing {
    animation: breathing 4s ease-in-out infinite;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-premium {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Premium Gradients */
@keyframes zenith-spin {
    0% {
        transform: rotate(0deg) translateX(-100%);
    }

    100% {
        transform: rotate(360deg) translateX(100%);
    }
}

@keyframes float-soft {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float-soft {
    animation: float-soft 8s ease-in-out infinite;
}

.premium-ad-tag {
    background: linear-gradient(135deg, #7E22CE 0%, #4F46E5 100%);
}

.premium-gradient {
    background: linear-gradient(135deg, #7E22CE 0%, #4F46E5 100%);
}

.premium-gradient-alt {
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.animate-pulse-soft {
    animation: pulse-soft 3s ease-in-out infinite;
}

/* Text Glow */
.text-glow {
    text-shadow: 0 0 15px rgba(126, 34, 206, 0.3);
}

/* Premium Gradients & Typography */
.pricing-gradient-text {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.15));
}

/* Enhanced Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Pronotify - Ultra Premium Notification System */
.pronotify-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    pointer-events: none;
    max-width: 420px;
    width: 100%;
}

.pronotify-item {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px) saturate(210%);
    -webkit-backdrop-filter: blur(30px) saturate(210%);
    border-radius: 32px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 30px 0px var(--card-glow-alpha, rgba(126, 34, 206, 0.08)),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateX(120%) scale(0.95);
    opacity: 0;
    animation: pronotify-spring-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.pronotify-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

@keyframes pronotify-spring-in {
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.pronotify-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
}

.pronotify-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    opacity: 0.3;
}

.pronotify-content {
    flex: 1;
}

.pronotify-title {
    font-weight: 500;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.pronotify-message {
    font-size: 0.98rem;
    color: #0f172a;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.pronotify-close {
    background: rgba(0, 0, 0, 0.03);
    border: none;
    color: #64748b;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: 0.5rem;
}

.pronotify-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #0f172a;
    transform: rotate(90deg);
}

/* Mark as Read Button - Premium High-Action Button */
.pronotify-dismiss-btn {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 0.5rem;
    width: 100%;
    font-weight: 700;
    box-shadow: 
        0 4px 12px rgba(15, 23, 42, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.pronotify-dismiss-btn:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(15, 23, 42, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.pronotify-dismiss-btn:active {
    transform: translateY(0) scale(0.97);
}

.pronotify-dismiss-btn span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.pronotify-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    margin-top: auto;
}

.pronotify-success .pronotify-dismiss-btn {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.pronotify-success .pronotify-dismiss-btn:hover {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.pronotify-danger .pronotify-dismiss-btn,
.pronotify-error .pronotify-dismiss-btn {
    background: linear-gradient(135deg, #dc2626 0%, #f43f5e 100%);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.pronotify-warning .pronotify-dismiss-btn {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

.pronotify-info .pronotify-dismiss-btn {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Status Variants & Glows */
.pronotify-success {
    box-shadow: 0 20px 50px -15px rgba(16, 185, 129, 0.2);
}

.pronotify-success .pronotify-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.pronotify-success .pronotify-icon::after {
    background: #10b981;
    animation: breathe-glow 4s infinite;
}

.pronotify-error {
    box-shadow: 0 20px 50px -15px rgba(239, 68, 68, 0.2);
}

.pronotify-error .pronotify-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.pronotify-error .pronotify-icon::after {
    background: #ef4444;
    animation: breathe-glow 3s infinite;
}

.pronotify-warning {
    box-shadow: 0 20px 50px -15px rgba(245, 158, 11, 0.2);
}

.pronotify-warning .pronotify-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.pronotify-warning .pronotify-icon::after {
    background: #f59e0b;
    animation: breathe-glow 4s infinite;
}

.pronotify-info {
    box-shadow: 0 20px 50px -15px rgba(59, 130, 246, 0.2);
}

.pronotify-info .pronotify-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.pronotify-info .pronotify-icon::after {
    background: #3b82f6;
    animation: breathe-glow 5s infinite;
}

@keyframes breathe-glow {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

@keyframes liquid-shine {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes scanning-laser {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

/* Elite Toast Mobile Optimizations */
@keyframes pronotify-slide-out-right {
    to {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
}
.animate-slide-out-right {
    animation: pronotify-slide-out-right 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@media (max-width: 768px) {
    .pronotify-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        width: auto;
        gap: 0.75rem;
        /* Allow touch scrolling if too many toasts stack up */
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
        pointer-events: none;
    }

    .pronotify-item {
        margin: 0;
        padding: 1rem 1.25rem;
        border-radius: 24px;
        transform: translateY(-50px) scale(0.95);
        animation: pronotify-spring-down 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
        pointer-events: auto;
        box-shadow: 
            0 15px 35px -10px rgba(0, 0, 0, 0.15),
            0 0 20px 0px var(--card-glow-alpha, rgba(126, 34, 206, 0.08)),
            inset 0 0 15px rgba(255, 255, 255, 0.4);
    }
    
    @keyframes pronotify-spring-down {
        to {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }
    
    @keyframes pronotify-slide-up-out {
        to {
            transform: translateY(-50px) scale(0.9);
            opacity: 0;
        }
    }
    
    .animate-slide-out-right {
        animation: pronotify-slide-up-out 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    }

    .pronotify-item-header {
        gap: 0.75rem;
    }

    .pronotify-icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 14px;
        font-size: 1.15rem;
    }
    
    .pronotify-icon::after {
        inset: -4px;
        border-radius: 18px;
    }

    .pronotify-title {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }

    .pronotify-message {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .pronotify-close {
        width: 28px;
        height: 28px;
        margin-left: 0.25rem;
    }
    
    .pronotify-dismiss-btn {
        padding: 0.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .pronotify-dismiss-btn span {
        font-size: 10px;
    }
}

/* ProConfirm - Ultra Premium Confirmation Modal */
.proconfirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.proconfirm-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.proconfirm-modal {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border-radius: 32px;
    width: 100%;
    max-width: 440px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 25px 60px -12px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.proconfirm-overlay.active .proconfirm-modal {
    transform: scale(1) translateY(0);
}

.proconfirm-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #7E22CE 0%, #A855F7 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 35px -10px rgba(126, 34, 206, 0.4);
}

.proconfirm-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.proconfirm-message {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.proconfirm-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.ultra-pro-call-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    border: none;
    text-decoration: none !important;
    height: 100%;
    font-size: 0.8rem;
    color: white !important;
    isolation: isolate;
}

/* Specific Border-Glow for Split Style */
.ultra-pro-call-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 200%;
    pointer-events: none;
    z-index: 1;
    animation: border-glow-spin 4s linear infinite;
    opacity: 0.5;
}

.ultra-pro-call-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 40%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(35deg);
    opacity: 0.5;
    z-index: 2;
    animation: periodic-shine 6s infinite;
}

.ultra-pro-buy-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5rem;
    background: linear-gradient(135deg, #7E22CE 0%, #4F46E5 100%);
    color: white !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    border: none;
    text-decoration: none !important;
    isolation: isolate;
}

.ultra-pro-buy-btn:hover {
    background: linear-gradient(135deg, #9333EA 0%, #6366F1 100%);
    letter-spacing: 0.2em;
}

.ultra-pro-buy-btn i {
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.ultra-pro-buy-btn:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.ultra-pro-buy-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 200%;
    z-index: 1;
    animation: border-glow-spin 4s linear infinite;
}

.ultra-pro-buy-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 40%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(35deg);
    z-index: 2;
    animation: periodic-shine 4s infinite;
}

.proconfirm-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 18px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.proconfirm-btn-cancel {
    background: rgba(0, 0, 0, 0.05);
    color: #64748b;
}

.proconfirm-btn-cancel:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

.proconfirm-btn-confirm {
    background: #0f172a;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
}

.proconfirm-btn-confirm:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -8px rgba(15, 23, 42, 0.4);
}

/* Optional: Add a "Please rotate your device" overlay if the rotation feels too aggressive */
/* 
/* 
@media screen and (orientation: landscape) and (max-width: 1024px) {
    body::after {
        content: "Please rotate your device to Portrait mode.";
        position: fixed;
        inset: 0;
        background: #7E22CE;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        font-weight: bold;
    }
}
*/

/* --- EXTREME PREMIUM BUTTON SYSTEM --- */
.ultra-pro-call-btn.standard-premium {
    background: linear-gradient(-45deg, #f59e0b, #fbbf24, #f59e0b, #d97706);
    background-size: 300% 300%;
    animation: extreme-pan 6s ease infinite;
    box-shadow: 0 10px 30px -5px rgba(245, 158, 11, 0.5);
}

.ultra-pro-call-btn.premium-gold {
    background: linear-gradient(-45deg, #8B5E3C, #D4AF37, #B8860B, #8B5E3C);
    background-size: 300% 300%;
    animation: extreme-pan 4s linear infinite;
    box-shadow: 0 12px 35px -8px rgba(139, 94, 60, 0.6);
}

.ultra-pro-call-btn.whatsapp-btn {
    background: linear-gradient(-45deg, #059669, #10b981, #34d399, #059669);
    background-size: 300% 300%;
    animation: extreme-pan 7s ease infinite;
    box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.5);
}

.noir-btn-outline.whatsapp-btn:hover {
    background: linear-gradient(-45deg, #059669, #10b981, #34d399, #059669) !important;
    background-size: 300% 300% !important;
    animation: extreme-pan 7s ease infinite !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.5) !important;
}

.ultra-pro-call-btn.message-btn {
    background: linear-gradient(-45deg, #4f46e5, #7c3aed, #4f46e5, #6366f1);
    background-size: 300% 300%;
    animation: extreme-pan 5s ease infinite;
    box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.5);
}

.noir-btn-outline.message-btn:hover {
    background: linear-gradient(-45deg, #4f46e5, #7c3aed, #4f46e5, #6366f1) !important;
    background-size: 300% 300% !important;
    animation: extreme-pan 5s ease infinite !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.5) !important;
}

.ultra-pro-call-btn.verified-agent {
    background: linear-gradient(-45deg, #8B5E3C, #452914, #8B5E3C, #5C3D2E);
    background-size: 300% 300%;
    animation: extreme-pan 8s ease infinite;
    box-shadow: 0 10px 30px -5px rgba(139, 94, 60, 0.4);
}

.ultra-pro-call-btn:hover {
    filter: brightness(1.2);
}

.ultra-pro-call-btn:active {
    filter: brightness(0.9);
}

.ultra-pro-call-btn i {
    font-size: 1.1rem !important;
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ultra-pro-call-btn span {
    position: relative;
    z-index: 3;
}

.ultra-pro-call-btn:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Standalone Premium Variant for Ad Details */
.ultra-pro-call-btn.standalone {
    height: 3.8rem;
    border-radius: 1.25rem;
    padding: 0 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.ultra-pro-call-btn.standalone::before {
    border-radius: 1.25rem;
}

.ultra-pro-call-btn.standalone:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.4);
    filter: brightness(1.2);
}

.ultra-pro-call-btn.standalone:active {
    transform: translateY(-2px);
}

.ultra-pro-call-btn.standalone i {
    font-size: 1.4rem !important;
}

/* --- NOIR ELITE SYSTEM --- */
.zenith-border-light {
    position: relative;
    overflow: hidden;
}

.zenith-border-light::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(200, 180, 255, 0.1), transparent 15%);
    animation: zenith-spin 6s linear infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.zenith-border-light:hover::after {
    opacity: 1;
}

.silk-grain {
    position: relative;
}

.silk-grain::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.lustre-highlight {
    box-shadow:
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.9),
        0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.magnetic-tilt {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.silk-glass {
    background: var(--silk-white);
    backdrop-filter: blur(60px) saturate(210%);
    -webkit-backdrop-filter: blur(60px) saturate(210%);
    border: var(--ultra-thin-border);
    box-shadow:
        inset 0 1px 2px 0 rgba(255, 255, 255, 0.9),
        0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.airy-shadow {
    box-shadow:
        0 4px 12px -2px rgba(0, 0, 0, 0.04),
        0 15px 35px -10px rgba(0, 0, 0, 0.05),
        0 30px 60px -15px rgba(0, 0, 0, 0.02),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.airy-shadow-hover:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.15),
        0 30px 60px -25px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.kinetic-transition {
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hairline-divider {
    border-color: rgba(15, 23, 42, 0.04);
}

.mist-overlay {
    background: var(--mist-glow);
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.noir-card {
    background: #ffffff;
    border: 0.5px solid #eef2f6;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.noir-card-hover:hover {
    border-color: #0f172a;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
}

.bento-item {
    padding: 2rem;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.4s ease;
}

.bento-item:hover {
    background: var(--noir-50);
}

/* Luxury Buttons */
.noir-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: var(--noir-900);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    /* Extremely wide tracking for luxury feel */
    border-radius: 0;
    transition: all 0.6s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

.noir-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.noir-btn:hover::before {
    left: 100%;
}

.noir-btn:hover {
    background: var(--noir-950);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.noir-btn-outline {
    background: transparent;
    border: 1px solid var(--noir-900);
    color: var(--noir-900);
}

.noir-btn-outline:hover {
    background: var(--noir-900);
    color: white;
}

/* Luxury Gold Details */
.gold-accent {
    color: var(--luxury-gold);
}

.bg-gold {
    background-color: var(--luxury-gold);
}

.ultra-premium-green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.15));
    font-weight: 600;
}

.text-noir-950 {
    color: var(--noir-950);
}

.text-noir-900 {
    color: var(--noir-900);
}

.text-noir-800 {
    color: var(--noir-800);
}

.border-noir-900 {
    border-color: var(--noir-900);
}

/* Editorial Typography */
.editorial-title {
    font-family: 'Dosis', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: var(--noir-950);
}

.urdu-text.editorial-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem) !important;
    line-height: 1.4 !important;
}

.editorial-subtitle {
    font-family: 'Dosis', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #94a3b8;
    transition: color 0.3s ease;
}

@media (max-width: 767px) {
    .editorial-subtitle {
        font-size: 0.6rem;
        letter-spacing: 0.25em;
    }
}

.bento-item:hover .editorial-subtitle {
    color: var(--noir-900);
}

.prose-noir {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.9;
    letter-spacing: -0.01em;
}

.prose-noir p {
    margin-bottom: 1.5rem;
}

.prose-noir li p {
    margin-bottom: 0 !important;
}

.prose-noir li {
    margin-bottom: 0.2rem;
}

.prose-noir strong {
    color: var(--noir-950);
    font-weight: 700;
}

/* Premium Status Badges - Inline Orb System */
.premium-status-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    isolation: isolate;
}

.premium-status-badge:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

.premium-status-badge .icon-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    background: white;
    font-size: 1.2rem;
}

/* Emerald Variation (Verification) */
.status-emerald {
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-emerald .icon-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #10b981;
}

.status-emerald:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.2);
}

/* Blue Variation (Protected) */
.status-blue {
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-blue .icon-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #3b82f6;
}

.status-blue:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.2);
}

/* Ruby Variation (Report) */
.status-ruby {
    background: rgba(254, 242, 242, 0.4);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-ruby .icon-box {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #ef4444;
}

.status-ruby:hover {
    background: rgba(254, 242, 242, 0.7);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 15px 30px -5px rgba(239, 68, 68, 0.25);
}

.ultra-pro-call-btn span {
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Premium Sidebar Actions Hub */
.premium-actions-hub {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 2.5rem;
    padding: clamp(1rem, 1.5vw, 1.5rem);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.07),
        inset 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Admin Premium Segmented Duration Selector */
.segmented-duration-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: 18px;
    border: 1px solid rgba(126, 34, 206, 0.1);
    display: flex;
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.segmented-duration-item {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 10px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
    min-height: 44px;
}

.segmented-duration-item:hover:not(.active) {
    background: rgba(126, 34, 206, 0.05);
}

.segmented-duration-item .duration-label {
    display: block;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 2px;
    transition: color 0.4s;
}

.segmented-duration-item .duration-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #475569;
    transition: all 0.4s;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.segmented-duration-item.active .duration-label {
    color: rgba(255, 255, 255, 0.9);
}

.segmented-duration-item.active .duration-value {
    color: #fff;
    transform: scale(1.1);
}

/* Sliding Background Pill */
.segmented-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    bottom: 6px;
    width: calc(25% - 3px);
    /* 4 items = 25% */
    background: linear-gradient(135deg, #7E22CE 0%, #4F46E5 100%);
    border-radius: 14px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 20px -5px rgba(126, 34, 206, 0.4);
    z-index: 1;
}

/* Slide positions for 4 items */
.slide-0 {
    left: 6px;
    width: calc(25% - 3px);
}

.slide-1 {
    left: calc(25% + 4.5px);
    width: calc(25% - 4.5px);
}

.slide-2 {
    left: calc(50% + 1.5px);
    width: calc(25% - 4.5px);
}

.slide-3 {
    left: calc(75% + 1.5px);
    width: calc(25% - 7.5px);
}

/* Badge for items */
.duration-item-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    background: #7E22CE;
    color: #fff;
    padding: 1px 6px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s;
}

.segmented-duration-item.active .duration-item-badge {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

/* Premium Number Input (Non-Admin) */
.premium-number-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4px;
    border-radius: 18px;
    border: 1px solid rgba(126, 34, 206, 0.1);
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: 240px;
}

.premium-number-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    text-align: center;
    font-size: 24px !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 60px !important;
    outline: none !important;
    box-shadow: none !important;
}

.premium-number-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(126, 34, 206, 0.1);
    color: #7E22CE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.premium-number-btn:hover {
    background: #7E22CE;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(126, 34, 206, 0.3);
}

.premium-number-btn:active {
    transform: translateY(0) scale(0.95);
}

.duration-hint {
    display: block;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-top: 8px;
    margin-left: 4px;
}

/* Chrome, Safari, Edge, Opera */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Firefox */
.no-spinner {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Sticky Header Scrolled State - Ultra Pro Elite */
.sticky-pricing-scrolled {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(40px) saturate(220%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(220%) !important;
    box-shadow:
        0 20px 50px -15px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 2rem !important;
    margin-top: 5px;
}

.sticky-pricing-scrolled #sticky-header-inner {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    gap: 0.5rem !important;
}

@media (min-width: 1024px) {
    .sticky-pricing-scrolled #sticky-header-inner {
        align-items: center !important;
    }
}

.sticky-pricing-scrolled .editorial-title {
    font-size: 1.8rem !important;
    line-height: 1.1 !important;
    color: #0f172a !important;
}

.sticky-pricing-scrolled .urdu-text.editorial-title {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
}

@media (max-width: 767px) {
    .sticky-pricing-scrolled .editorial-title {
        font-size: 1.3rem !important;
    }

    .sticky-pricing-scrolled #sticky-header-inner {
        gap: 0.25rem !important;
    }
}

.sticky-pricing-scrolled .text-5xl {
    font-size: 1.6rem !important;
    color: #0f172a !important;
}

.sticky-pricing-scrolled .editorial-subtitle {
    font-size: 0.6rem !important;
    margin-bottom: -2px !important;
    opacity: 0.6;
}

/* Ensure sticky top works if Tailwind class is missing */
.sticky {
    position: sticky !important;
}

/* Custom Category Dropdown Premium Styles */
.custom-dropdown-list {
    direction: rtl; /* Moves scrollbar to the left */
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 #f8fafc;
}

.custom-dropdown-list > * {
    direction: ltr; /* Keeps content LTR */
}

.custom-dropdown-list::-webkit-scrollbar {
    width: 2px; /* Ultra-thin chrome scrollbar */
}

.custom-dropdown-list::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.custom-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* Ensure smooth transitions for custom dropdown items */
.custom-dropdown-list li {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-dropdown-list li:hover {
    padding-left: 1.75rem !important; /* Subtle push on hover */
}

/* End of Custom Dropdown Styles */