        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0e27;
            color: #e0e0e0;
            overflow-x: hidden;
        }

        /* Animated gradient background */
        .gradient-bg {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #0d1b2a 50%, #1a0a2e 75%, #0a0e27 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Glowing text effect */
        .glow-text {
            text-shadow: 0 0 20px rgba(255, 69, 0, 0.8), 0 0 40px rgba(255, 69, 0, 0.5);
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { text-shadow: 0 0 20px rgba(255, 69, 0, 0.8), 0 0 40px rgba(255, 69, 0, 0.5); }
            50% { text-shadow: 0 0 30px rgba(255, 69, 0, 1), 0 0 50px rgba(255, 69, 0, 0.7); }
        }

        /* Animated entrance */
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
        .fade-in-up:nth-child(4) { animation-delay: 0.4s; }
        .fade-in-up:nth-child(5) { animation-delay: 0.5s; }

        /* Card hover effect */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 69, 0, 0.3);
        }

        .card-hover:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 69, 0, 0.8);
            box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
        }

        /* Pulse animation */
        .pulse-danger {
            animation: pulseDanger 2s ease-in-out infinite;
        }

        @keyframes pulseDanger {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Table styling */
        table {
            border-collapse: collapse;
        }

        thead {
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(255, 69, 0, 0.1));
            border-bottom: 2px solid rgba(255, 69, 0, 0.5);
        }

        tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background-color 0.3s ease;
        }

        tbody tr:hover {
            background-color: rgba(255, 69, 0, 0.1);
        }

        /* Accent color */
        .accent-orange {
            color: #ff4500;
        }

        .accent-border {
            border-color: #ff4500;
        }

        /* Badge styling */
        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .badge-danger {
            background: rgba(255, 69, 0, 0.2);
            color: #ff6b35;
            border: 1px solid rgba(255, 69, 0, 0.4);
        }

        /* Scroll reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating animation */
        .float {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Striped table background */
        tbody tr:nth-child(odd) {
            background-color: rgba(255, 69, 0, 0.02);
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0e27;
        }

        ::-webkit-scrollbar-thumb {
            background: #ff4500;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #ff6b35;
        }

        /* Animated highlight box */
        .highlight-warning {
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.3), rgba(255, 107, 53, 0.2));
            border: 2px solid #ff4500;
            box-shadow: 0 0 30px rgba(255, 69, 0, 0.5), inset 0 0 20px rgba(255, 69, 0, 0.1);
            animation: highlightPulse 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .highlight-warning::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: highlightSweep 3s ease-in-out infinite;
        }

        @keyframes highlightPulse {
            0%, 100% {
                box-shadow: 0 0 30px rgba(255, 69, 0, 0.5), inset 0 0 20px rgba(255, 69, 0, 0.1);
                border-color: #ff4500;
            }
            50% {
                box-shadow: 0 0 50px rgba(255, 69, 0, 0.8), inset 0 0 30px rgba(255, 69, 0, 0.2);
                border-color: #ff6b35;
            }
        }

        @keyframes highlightSweep {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Warning text animation */
        .warning-text {
            animation: warningBounce 0.6s ease-in-out;
        }

        @keyframes warningBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Risk badge pulse */
        .risk-pulse {
            animation: riskPulse 1.5s ease-in-out infinite;
        }

        @keyframes riskPulse {
            0%, 100% {
                transform: scale(1);
                filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.5));
            }
            50% {
                transform: scale(1.1);
                filter: drop-shadow(0 0 15px rgba(255, 69, 0, 1));
            }
        }

        /* Career section glow */
        .career-glow {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(59, 130, 246, 0.2));
            border: 2px solid #22c55e;
            box-shadow: 0 0 40px rgba(34, 197, 94, 0.4), inset 0 0 20px rgba(34, 197, 94, 0.1);
            animation: careerGlowPulse 2.5s ease-in-out infinite;
        }

        @keyframes careerGlowPulse {
            0%, 100% {
                box-shadow: 0 0 40px rgba(34, 197, 94, 0.4), inset 0 0 20px rgba(34, 197, 94, 0.1);
                border-color: #22c55e;
            }
            50% {
                box-shadow: 0 0 60px rgba(34, 197, 94, 0.7), inset 0 0 30px rgba(34, 197, 94, 0.2);
                border-color: #4ade80;
            }
        }

        /* Earning counter animation */
        .earning-counter {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #86efac 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: counterShimmer 3s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
        }

        @keyframes counterShimmer {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.8));
            }
        }

        /* Animated arrow */
        .animated-arrow {
            display: inline-block;
            animation: arrowBounce 1s ease-in-out infinite;
        }

        @keyframes arrowBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Success stat animation */
        .success-stat {
            animation: statGrowth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes statGrowth {
            from {
                opacity: 0;
                transform: scale(0.5) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Devastating consequence animations */
        .consequence-card {
            position: relative;
            overflow: hidden;
            animation: consequenceSlideIn 0.6s ease-out forwards;
            opacity: 0;
        }

        .consequence-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: consequenceShine 2s ease-in-out infinite;
        }

        .consequence-card:hover {
            transform: translateX(8px) scale(1.02);
            box-shadow: 0 0 30px rgba(239, 68, 68, 0.7), inset -2px 0 10px rgba(239, 68, 68, 0.3);
        }

        @keyframes consequenceSlideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes consequenceShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .consequence-card:nth-child(1) { animation-delay: 0.1s; }
        .consequence-card:nth-child(2) { animation-delay: 0.2s; }
        .consequence-card:nth-child(3) { animation-delay: 0.3s; }
        .consequence-card:nth-child(4) { animation-delay: 0.4s; }
        .consequence-card:nth-child(5) { animation-delay: 0.5s; }

        /* Red pulse for disaster effect */
        .disaster-pulse {
            animation: disasterPulse 1.5s ease-in-out infinite;
        }

        @keyframes disasterPulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(239, 68, 68, 0.4), inset 0 0 15px rgba(239, 68, 68, 0.1);
                border-color: rgba(239, 68, 68, 0.6);
            }
            50% {
                box-shadow: 0 0 40px rgba(239, 68, 68, 0.8), inset 0 0 25px rgba(239, 68, 68, 0.2);
                border-color: rgba(239, 68, 68, 0.9);
            }
        }

        /* Consequence emoji shake */
        .emoji-shake {
            display: inline-block;
            animation: emojiShake 0.5s ease-in-out;
        }

        @keyframes emojiShake {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            75% { transform: rotate(5deg); }
        }

        /* Consequence text highlight */
        .consequence-text {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.2));
            border-left: 4px solid #ef4444;
            padding-left: 12px;
            animation: consequenceTextGlow 2s ease-in-out infinite;
        }

        @keyframes consequenceTextGlow {
            0%, 100% {
                text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
            }
            50% {
                text-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
            }
        }

        /* Final warning box */
        .final-warning {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(220, 38, 38, 0.3));
            border: 2px solid #dc2626;
            box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), inset 0 0 20px rgba(239, 68, 68, 0.1);
            animation: finalWarningPulse 2.5s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .final-warning::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            animation: warningShine 3s ease-in-out infinite;
        }

        @keyframes finalWarningPulse {
            0%, 100% {
                box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), inset 0 0 20px rgba(239, 68, 68, 0.1);
                border-color: #dc2626;
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 60px rgba(239, 68, 68, 0.9), inset 0 0 30px rgba(239, 68, 68, 0.2);
                border-color: #ef4444;
                transform: scale(1.01);
            }
        }

        @keyframes warningShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Counter animation for thousands */
        .counter-text {
            background: linear-gradient(135deg, #ef4444, #dc2626, #991b1b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: counterGlow 2s ease-in-out infinite;
            font-weight: 900;
        }

        @keyframes counterGlow {
            0%, 100% {
                text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
                filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.4));
            }
            50% {
                text-shadow: 0 0 30px rgba(239, 68, 68, 0.8);
                filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.7));
            }
        }

        /* Button animations */
        .btn-glow {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-glow:hover::before {
            left: 100%;
        }

        /* Hero section animation */
        .hero-text {
            background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ffa500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite;
            background-size: 200% 200%;
        }

        @keyframes shimmer {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Accordion */
        .accordion-button {
            background: rgba(255, 69, 0, 0.05);
            border: 1px solid rgba(255, 69, 0, 0.3);
            transition: all 0.3s ease;
        }

        .accordion-button:hover {
            background: rgba(255, 69, 0, 0.1);
            border-color: rgba(255, 69, 0, 0.6);
        }

        .accordion-button.active {
            background: rgba(255, 69, 0, 0.15);
            border-color: #ff4500;
        }

        /* Floating Call Button - Bottom Right */
        .floating-call-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            background: linear-gradient(135deg, #22c55e, #4ade80);
            color: white;
            border: none;
            border-radius: 50%;
            width: 70px;
            height: 70px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(34, 197, 94, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            transition: all 0.3s ease;
            animation: floatingBounce 3s ease-in-out infinite;
            text-decoration: none;
        }

        .floating-call-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 35px rgba(34, 197, 94, 0.9);
            background: linear-gradient(135deg, #4ade80, #86efac);
            animation: floatingBounceActive 0.5s ease-in-out infinite;
        }

        @keyframes floatingBounce {
            0%, 100% {
                transform: translateY(0px);
                filter: drop-shadow(0 4px 10px rgba(34, 197, 94, 0.6));
            }
            50% {
                transform: translateY(-15px);
                filter: drop-shadow(0 8px 20px rgba(34, 197, 94, 0.8));
            }
        }

        @keyframes floatingBounceActive {
            0%, 100% {
                transform: scale(1.15);
            }
            50% {
                transform: scale(1.25);
            }
        }

        /* Pulse ring around call button */
        .call-btn-pulse {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 998;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 2px solid #22c55e;
            animation: callPulseRing 2s ease-out infinite;
            pointer-events: none;
        }

        @keyframes callPulseRing {
            0% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(34, 197, 94, 0.3);
                transform: scale(1.1);
            }
            100% {
                box-shadow: 0 0 0 30px rgba(34, 197, 94, 0);
                transform: scale(1.2);
            }
        }

        /* Live indicator dot */
        .live-indicator {
            position: fixed;
            bottom: 38px;
            right: 38px;
            width: 12px;
            height: 12px;
            background: #ff4500;
            border-radius: 50%;
            z-index: 1000;
            animation: liveIndicatorPulse 1.5s ease-in-out infinite;
        }

        @keyframes liveIndicatorPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.7;
            }
        }

        /* Call button label tooltip */
        .call-btn-label {
            position: fixed;
            bottom: 50px;
            right: 80px;
            background: rgba(34, 197, 94, 0.95);
            color: white;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            z-index: 999;
            animation: labelFadeIn 0.4s ease-out forwards;
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
            opacity: 0;
        }

        .call-btn-label.show {
            animation: labelFadeIn 0.4s ease-out forwards;
        }

        @keyframes labelFadeIn {
            from {
                opacity: 0;
                transform: translateX(10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes labelFadeOut {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(10px);
            }
        }

        .call-btn-label.hide {
            animation: labelFadeOut 0.4s ease-out forwards;
        }

        /* ===== HERO HEADING ANIMATIONS ===== */
        
        /* Main H1 Container */
        .hero-h1-container {
            position: relative;
            display: inline-block;
            animation: heroHeadingFloat 3s ease-in-out infinite;
        }

        @keyframes heroHeadingFloat {
            0%, 100% {
                transform: translateY(0px);
                filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.5));
            }
            50% {
                transform: translateY(-15px);
                filter: drop-shadow(0 0 40px rgba(255, 69, 0, 0.8));
            }
        }

        /* First line "Black Hat SEO Course" */
        .hero-text {
            position: relative;
            display: inline-block;
            background: linear-gradient(90deg, #ff4500, #ff6b35, #ffa500, #ff6b35, #ff4500);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: heroTextShimmer 3s ease-in-out infinite;
            font-weight: 900;
            text-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
        }

        @keyframes heroTextShimmer {
            0%, 100% {
                background-position: 0% center;
                filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.4));
            }
            50% {
                background-position: 100% center;
                filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.9));
            }
        }

        /* Background glow behind heading */
        .hero-heading-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(255, 69, 0, 0.3), transparent);
            filter: blur(40px);
            z-index: -1;
            animation: headingGlowPulse 4s ease-in-out infinite;
        }

        @keyframes headingGlowPulse {
            0%, 100% {
                opacity: 0.4;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.7;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        /* Second line "in Delhi, India" */
        .hero-location-text {
            position: relative;
            display: inline-block;
            background: linear-gradient(90deg, #ffffff, #e0e0e0, #ffffff);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: locationTextWave 3s ease-in-out infinite;
            letter-spacing: 2px;
        }

        @keyframes locationTextWave {
            0%, 100% {
                background-position: 0% center;
                filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
            }
            50% {
                background-position: 100% center;
                filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
            }
        }

        /* Underline effect for heading */
        .hero-heading-underline {
            position: relative;
            height: 4px;
            background: linear-gradient(90deg, transparent, #ff4500, #ff6b35, #ff4500, transparent);
            border-radius: 2px;
            margin: 20px auto;
            width: 80%;
            max-width: 500px;
            animation: underlineSweep 2.5s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
        }

        @keyframes underlineSweep {
            0%, 100% {
                width: 60%;
                opacity: 0.5;
                box-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
            }
            50% {
                width: 100%;
                opacity: 1;
                box-shadow: 0 0 30px rgba(255, 69, 0, 0.8);
            }
        }

        /* Character-by-character wave effect */
        .hero-char {
            display: inline-block;
            animation: charWave 1s ease-in-out infinite;
        }

        .hero-char:nth-child(1) { animation-delay: 0s; }
        .hero-char:nth-child(2) { animation-delay: 0.1s; }
        .hero-char:nth-child(3) { animation-delay: 0.2s; }
        .hero-char:nth-child(4) { animation-delay: 0.3s; }
        .hero-char:nth-child(5) { animation-delay: 0.4s; }
        .hero-char:nth-child(6) { animation-delay: 0.5s; }
        .hero-char:nth-child(7) { animation-delay: 0.6s; }
        .hero-char:nth-child(8) { animation-delay: 0.7s; }
        .hero-char:nth-child(9) { animation-delay: 0.8s; }
        .hero-char:nth-child(10) { animation-delay: 0.9s; }
        .hero-char:nth-child(n+11) { animation-delay: 1s; }

        @keyframes charWave {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Highlight box around heading */
        .hero-heading-highlight {
            position: relative;
            padding: 30px 40px;
            border: 2px solid rgba(255, 69, 0, 0.5);
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 107, 53, 0.05));
            animation: headingBoxPulse 3s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(255, 69, 0, 0.3), inset 0 0 20px rgba(255, 69, 0, 0.05);
        }

        @keyframes headingBoxPulse {
            0%, 100% {
                border-color: rgba(255, 69, 0, 0.5);
                box-shadow: 0 0 30px rgba(255, 69, 0, 0.3), inset 0 0 20px rgba(255, 69, 0, 0.05);
            }
            50% {
                border-color: rgba(255, 69, 0, 0.8);
                box-shadow: 0 0 50px rgba(255, 69, 0, 0.6), inset 0 0 30px rgba(255, 69, 0, 0.1);
            }
        }

        /* Badge animation for "FINAL WAKE-UP CALL" */
        .hero-badge-animated {
            animation: badgePulseIntense 1.5s ease-in-out infinite;
        }

        @keyframes badgePulseIntense {
            0%, 100% {
                transform: scale(1);
                filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.4));
            }
            50% {
                transform: scale(1.1);
                filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.8));
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .floating-call-btn {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .call-btn-pulse {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
            }

            .live-indicator {
                bottom: 27px;
                right: 27px;
            }

            .call-btn-label {
                bottom: 40px;
                right: 70px;
                font-size: 11px;
                padding: 6px 12px;
            }
        }
    