        /* Preserve line breaks in chat messages */
        .chat-messages .message-content p {
            white-space: pre-line;
        }

        /* 🎨 ENHANCED CHAT LAYOUT - LOGO GOLD & FULL SCREEN 80% */
        .live-chat-widget {
            position: fixed !important;
            top: 10% !important; /* Start 10% from top */
            left: 10% !important; /* Start 10% from left */
            width: 80% !important; /* Take up 80% of screen width */
            height: 80% !important; /* Take up 80% of screen height */
            display: none !important;
            flex-direction: column !important;
            z-index: 9999 !important;
            background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #0f172a 100%) !important;  /* Dark gradient, not gold */
            border-radius: 20px !important;
            border: 2px solid rgba(233, 181, 55, 0.6) !important;  /* Logo gold border */
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(233, 181, 55, 0.1),
                inset 0 1px 0 rgba(233, 181, 55, 0.1),
                0 0 60px rgba(233, 181, 55, 0.3) !important;  /* Logo gold glow */
            overflow: hidden !important;  /* Clip child elements to rounded corners */
        }

        .live-chat-widget.active {
            display: flex !important;
            transform: translateY(0) scale(1) !important;
            opacity: 1 !important;
            visibility: visible !important;
            animation: chatSlideIn 0.4s ease-out !important;
        }

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

        .chat-header {
            height: 80px !important;
            flex-shrink: 0 !important;
            box-sizing: border-box !important;
            background: linear-gradient(135deg, #E9B537, #D4A42F) !important;  /* Logo gold */
            border-radius: 18px 18px 0 0 !important;  /* Slightly smaller to fit inside parent border */
            border-bottom: 2px solid rgba(233, 181, 55, 0.3) !important;  /* Logo gold border */
            display: flex !important;
            align-items: center !important;
            padding: 0 24px !important;
            color: #000000 !important;  /* Black text on gold */
            font-weight: 600 !important;
            font-size: 1.2rem !important;
            margin: 0 !important;  /* No margin */
        }

        .chat-messages {
            flex: 1 !important;
            overflow-y: auto !important;
            height: calc(100% - 160px) !important; /* Total minus header and input */
            padding: 24px !important;
            padding-bottom: 100px !important; /* More space for input */
            box-sizing: border-box !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.9)) !important;  /* Dark gray gradient */
            scroll-behavior: smooth !important;
        }

        .chat-input {
            position: absolute !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            height: 80px !important;
            flex-shrink: 0 !important;
            box-sizing: border-box !important;
            z-index: 10 !important;
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.9)) !important;  /* Dark gray */
            border-radius: 0 0 20px 20px !important;
            border-top: 2px solid rgba(233, 181, 55, 0.3) !important;  /* Logo gold border */
            padding: 16px 24px !important;
            overflow: hidden !important;  /* Clip corners */
        }

        /* Enhanced Mobile & Tablet Responsive */
        @media (max-width: 1024px) {
            .live-chat-widget {
                top: 5% !important;
                left: 10% !important;
                transform: none !important;
                width: 80% !important;
                height: 80% !important;
            }
        }

        @media (max-width: 768px) {
            .live-chat-widget {
                top: 0% !important;
                left: 10% !important;
                transform: none !important;
                width: 80% !important;
                height: 85vh !important;
                max-width: none !important;
                max-height: 85vh !important;
                border-radius: 16px !important;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
                position: fixed !important;
                z-index: 10000 !important;
                margin-top: 0 !important;
            }

            .live-chat-widget.active {
                transform: none !important;
                animation: none !important;
            }

            .chat-header {
                height: 60px !important;
                font-size: 1.1rem !important;
                border-radius: 16px 16px 0 0 !important;
            }

            .chat-messages {
                padding: 16px !important;
                padding-bottom: 80px !important;
            }

            .chat-input {
                height: 60px !important;
                border-radius: 0 0 16px 16px !important;
                padding: 12px 16px !important;
            }

            /* Prevent crazy animations on mobile touch */
            .chat-input input, .chat-send-btn {
                transition: none !important;
                transform: none !important;
                animation: none !important;
            }

            .chat-input input:focus {
                transform: none !important;
                animation: none !important;
                transition: none !important;
            }
        }

        @media (max-width: 480px) {
            .live-chat-widget {
                top: 0% !important;
                left: 10% !important;
                transform: none !important;
                width: 80% !important;
                height: 85vh !important;
                max-height: 85vh !important;
                border-radius: 12px !important;
                margin-top: 0 !important;
                animation: none !important;
            }

            .live-chat-widget.active {
                transform: none !important;
                animation: none !important;
            }

            .chat-header {
                border-radius: 12px 12px 0 0 !important;
            }

            .chat-input {
                border-radius: 0 0 12px 12px !important;
            }

            /* Prevent crazy animations on mobile touch */
            .chat-input input, .chat-send-btn {
                transition: none !important;
                transform: none !important;
                animation: none !important;
            }

            .chat-input input:focus {
                transform: none !important;
                animation: none !important;
                transition: none !important;
            }
        }

        /* 🚀 EPIC EMERGENCY MODAL STYLES - GRAND & PROFESSIONAL 🚀 */
        .emergency-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.98));
            -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 20px;
        }

        .emergency-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .emergency-modal-content {
            background: linear-gradient(145deg, #1f2937 0%, #111827 50%, #0f172a 100%);
            border-radius: 24px;
            max-width: 650px;
            width: 100%;
            max-height: 95vh;
            overflow-y: auto;
            border: 2px solid rgba(233, 181, 55, 0.4);
            box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: scale(0.9) translateY(50px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .emergency-modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #f59e0b, #10b981, #3b82f6, #dc2626);
            background-size: 400% 100%;
            animation: epicGradientFlow 3s ease infinite;
        }

        .emergency-modal.active .emergency-modal-content {
            transform: scale(1) translateY(0);
        }

        .emergency-modal-header {
            padding: 2.5rem 2rem 1.5rem;
            position: relative;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.05));
            border-bottom: 1px solid rgba(75, 85, 99, 0.3);
        }

        .header-background-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent, rgba(16, 185, 129, 0.1), transparent);
            animation: rotateGlow 8s linear infinite;
            opacity: 0.3;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .modal-icon-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
        }

        .modal-icon-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 70px;
            height: 70px;
            border: 3px solid rgba(251, 191, 36, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            animation: modalRingPulse 2s ease-in-out infinite;
        }

        .modal-icon-ring--delay {
            animation-delay: 1s;
            border-color: rgba(233, 181, 55, 0.3);
        }

        .modal-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.5rem;
            z-index: 3;
            filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
        }

        .header-text h3 {
            color: #f1f5f9;
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #f1f5f9, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .header-subtitle {
            color: #9ca3af;
            font-size: 1rem;
            font-weight: 500;
            margin: 0;
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
            border: none;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: #ef4444;
            cursor: pointer;
            transition: all 0.3s ease;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(239, 68, 68, 0.2);
            z-index: 10;
        }

        .close-ring {
            position: absolute;
            width: 50px;
            height: 50px;
            border: 2px solid rgba(239, 68, 68, 0.3);
            border-radius: 50%;
            animation: pulseClose 2s ease-in-out infinite;
        }

        .modal-close:hover {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.3));
            transform: scale(1.1);
            border-color: rgba(239, 68, 68, 0.4);
            color: #ffffff;
        }

        .emergency-modal-body {
            padding: 2rem;
        }

        .emergency-options {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .emergency-option {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.8rem;
            background: linear-gradient(135deg, rgba(55, 65, 81, 0.8), rgba(75, 85, 99, 0.6));
            border: 2px solid rgba(156, 163, 175, 0.2);
            border-radius: 16px;
            color: white;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            /* Button reset styles */
            font-family: inherit;
            font-size: inherit;
            text-align: left;
            width: 100%;
            outline: none;
        }

        .emergency-option:focus {
            border-color: rgba(233, 181, 55, 0.8);
            box-shadow: 0 0 0 4px rgba(233, 181, 55, 0.2);
        }

        .emergency-option::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: left 0.6s ease;
        }

        .emergency-option:hover::before {
            left: 100%;
        }

        .emergency-option:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(156, 163, 175, 0.4);
        }

        .emergency-option--chat {
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.9), rgba(16, 185, 129, 0.8));
            border-color: rgba(16, 185, 129, 0.5);
        }

        .emergency-option--chat:hover {
            border-color: rgba(16, 185, 129, 0.8);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
        }

        .emergency-option--call {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.8));
            border-color: rgba(59, 130, 246, 0.5);
        }

        .emergency-option--call:hover {
            border-color: rgba(59, 130, 246, 0.8);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
        }

        .emergency-option--email {
            background: linear-gradient(135deg, rgba(233, 181, 55, 0.9), rgba(212, 164, 47, 0.8));
            border-color: rgba(233, 181, 55, 0.5);
        }

        .emergency-option--email:hover {
            border-color: rgba(233, 181, 55, 0.8);
            box-shadow: 0 20px 40px rgba(233, 181, 55, 0.3);
        }

        .option-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .emergency-option:hover .option-icon {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1) rotate(5deg);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .option-content {
            flex: 1;
        }

        .option-content h4 {
            color: #ffffff;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .option-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .option-content span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .option-status {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.5rem;
        }

        .status-online, .status-monitored {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-online {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .status-monitored {
            background: rgba(233, 181, 55, 0.2);
            color: #E9B537;
            border: 1px solid rgba(233, 181, 55, 0.3);
        }

        .emergency-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(15, 23, 42, 0.9));
            border-radius: 16px;
            border: 1px solid rgba(75, 85, 99, 0.3);
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #9ca3af;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .info-item i {
            color: #3b82f6;
            font-size: 1.1rem;
        }

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

        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes modalRingPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
        }

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

        /* Mobile responsive for epic emergency modal */
        @media (max-width: 768px) {
            .emergency-modal-content {
                max-width: 95%;
                margin: 0 10px;
            }

            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .modal-icon-container {
                width: 60px;
                height: 60px;
            }

            .modal-icon {
                font-size: 2rem;
            }

            .header-text h3 {
                font-size: 1.5rem;
            }

            .emergency-options {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }

            .emergency-option {
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                text-align: left !important;
                gap: 0.75rem;
                padding: 0.75rem !important;
                min-height: 60px !important;
                max-height: 60px !important;
                width: 100%;
                font-size: 0.8rem;
            }

            .option-icon {
                flex-shrink: 0;
                width: 32px !important;
                height: 32px !important;
                font-size: 0.9rem !important;
                min-width: 32px;
            }

            .option-content {
                flex: 1;
                overflow: hidden;
            }

            .option-content h4 {
                font-size: 0.85rem !important;
                margin-bottom: 0.1rem;
                line-height: 1.2;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .option-content p {
                font-size: 0.75rem !important;
                margin-bottom: 0.1rem;
                line-height: 1.1;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .option-content span {
                font-size: 0.7rem !important;
                line-height: 1.1;
                display: block;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .option-status {
                flex-shrink: 0;
                align-items: center;
            }

            .status-online, .status-monitored {
                padding: 0.2rem 0.4rem !important;
                font-size: 0.6rem !important;
                border-radius: 8px;
                white-space: nowrap;
            }

            .emergency-info {
                gap: 0.75rem;
                padding: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .emergency-modal-header {
                padding: 1.5rem 1rem 0.75rem;
            }

            .emergency-modal-body {
                padding: 1rem;
            }

            .emergency-options {
                gap: 0.5rem;
            }

            .emergency-option {
                padding: 0.5rem !important;
                gap: 0.5rem;
                min-height: 50px !important;
                max-height: 50px !important;
            }

            .option-icon {
                width: 28px !important;
                height: 28px !important;
                font-size: 0.8rem !important;
                min-width: 28px;
            }

            .option-content h4 {
                font-size: 0.75rem !important;
            }

            .option-content p {
                font-size: 0.7rem !important;
            }

            .option-content span {
                font-size: 0.65rem !important;
            }

            .status-online, .status-monitored {
                padding: 0.15rem 0.3rem !important;
                font-size: 0.55rem !important;
            }
        }

        /* Skip navigation removed - was positioning awkwardly */

        /* 🔥 STUNNING PAYMENT FORM STYLES 🔥 */
        .payment-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 12000;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            animation: fadeInModal 0.3s ease-out;
        }

        body.payment-modal-open {
            overflow: hidden;
        }

        body.payment-modal-open .live-chat-widget,
        body.payment-modal-open .floating-support {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            display: none !important;
        }

        .payment-modal__backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.2));
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .payment-modal__container {
            position: relative;
            z-index: 1;
            max-width: 650px;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideInUp 0.4s ease-out;
        }

        .payment-form {
            background: linear-gradient(145deg, #1f2937, #111827);
            border: 2px solid #374151;
            border-radius: 20px;
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(55, 65, 81, 0.3),
                inset 0 1px 0 rgba(55, 65, 81, 0.2);
            overflow: hidden;
            position: relative;
        }

        .payment-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa, #2563eb);
            background-size: 400% 100%;
            animation: gradientShift 3s ease infinite;
        }

        .payment-form__header {
            padding: 40px 40px 30px;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, #1f2937, #111827);
        }

        .payment-form__icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            animation: pulseGlow 2s ease-in-out infinite;
        }

        .payment-form__title {
            font-size: 28px;
            font-weight: 700;
            color: #e5e7eb;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #e5e7eb, #9ca3af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .payment-form__subtitle {
            color: #9ca3af;
            font-size: 16px;
            font-weight: 500;
        }

        .payment-form__close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: none;
            background: rgba(55, 65, 81, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #9ca3af;
            cursor: pointer;
            transition: all 0.3s ease;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .payment-form__close:hover {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            transform: scale(1.1);
        }

        .payment-form__form {
            padding: 0 40px 40px;
        }

        .payment-form__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group--full {
            grid-column: 1 / -1;
            margin-bottom: 25px;
        }

        .form-label {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: #374151;
            margin-bottom: 10px;
            font-size: 15px;
        }

        .form-label i {
            margin-right: 10px;
            width: 16px;
            color: #2563eb;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #4b5563;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            color: #e5e7eb;
            background: #374151;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #E9B537;
            background: #1f2937;
            box-shadow:
                0 0 0 4px rgba(233, 181, 55, 0.15),
                0 4px 12px rgba(233, 181, 55, 0.25);
            transform: translateY(-2px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .file-upload {
            position: relative;
        }

        .file-upload__input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .file-upload__label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            border: 2px dashed #4b5563;
            border-radius: 12px;
            background: linear-gradient(135deg, #1f2937, #374151);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #64748b;
        }

        .file-upload__label:hover {
            border-color: #2563eb;
            background: linear-gradient(135deg, #eff6ff, #f0f9ff);
            color: #2563eb;
            transform: translateY(-2px);
        }

        .file-upload__label i {
            font-size: 32px;
            margin-bottom: 10px;
            color: #2563eb;
        }

        .payment-form__actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn {
            flex: 1;
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .btn--primary {
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            color: white;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }

        .btn--primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
        }

        .btn--primary:active {
            transform: translateY(-1px);
        }

        .btn--secondary {
            background: #f1f5f9;
            color: #64748b;
            border: 2px solid #e2e8f0;
        }

        .btn--secondary:hover {
            background: #e2e8f0;
            color: #475569;
            transform: translateY(-2px);
        }

        /* Animations */
        @keyframes fadeInModal {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes pulseGlow {
            0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5); }
        }

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

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .payment-modal {
                padding: 1.25rem;
                align-items: flex-start;
            }

            .payment-modal__container {
                width: 100%;
                max-width: 100%;
                max-height: calc(100vh - 2.5rem);
            }

            .payment-form__header {
                padding: 30px 25px 20px;
            }

            .payment-form__form {
                padding: 0 25px 30px;
            }

            .payment-form__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .payment-form__title {
                font-size: 24px;
            }

            .payment-form__icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .payment-form__actions {
                flex-direction: column;
            }
        }

        @media (max-width: 520px) {
            .payment-modal {
                padding: 0.75rem;
            }

            .payment-modal__container {
                max-height: calc(100vh - 1.5rem);
            }

            .payment-form {
                border-radius: 14px;
            }

            .payment-form__header {
                padding: 24px 20px 18px;
            }

            .payment-form__form {
                padding: 0 20px 24px;
            }
        }

        /* Screen Reader Only Content */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Premium ROI Calculator Styles */
        .enterprise-btn {
            background: linear-gradient(135deg, var(--premium-gold), var(--luxury-gold), var(--primary-color));
            color: var(--premium-navy);
            font-size: 1.1rem;
            font-weight: 700;
            padding: 1.2rem 2.5rem;
            box-shadow: 0 8px 25px rgba(233, 181, 55, 0.3);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ROI Calculator Section - Dark Background */
        .roi-calculator {
            background: linear-gradient(145deg, var(--premium-navy) 0%, var(--executive-navy) 100%) !important;
            padding: 5rem 0;
        }

        .calculator-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        @media (max-width: 768px) {
            .calculator-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Dark Mode Calculator Styles */
        .calculator-card {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            border: 2px solid #374151;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            transition: all 0.3s ease;
        }

        .calculator-card h3 {
            color: #e5e7eb;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .input-group label {
            color: #e5e7eb;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }

        .calculator-card input,
        .calculator-card select {
            background: #374151;
            border: 2px solid #4b5563;
            color: #e5e7eb;
            border-radius: 12px;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .calculator-card input:focus,
        .calculator-card select:focus {
            outline: none;
            border-color: #E9B537;
            background: #1f2937;
            box-shadow: 0 0 0 4px rgba(233, 181, 55, 0.15);
        }

        .results-card {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            border: 2px solid #374151;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }

        .results-card h3 {
            color: #e5e7eb;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .breakdown-label {
            color: #9ca3af;
        }

        .metric-label {
            color: #9ca3af;
        }

        /* Premium FAQ Section Styles */
        .faq {
            background: linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e293b 100%);
            padding: 6rem 0;
            position: relative;
        }

        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
        }

        .faq__content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .faq__list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq__item {
            background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
            border: 2px solid #374151;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .faq__item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .faq__item:hover {
            border-color: #3b82f6;
            box-shadow: 0 8px 35px rgba(59, 130, 246, 0.2);
            transform: translateY(-2px);
        }

        .faq__item:hover::before {
            transform: scaleX(1);
        }

        .faq__item.active {
            border-color: #10b981;
            box-shadow: 0 12px 40px rgba(16, 185, 129, 0.25);
            background: linear-gradient(145deg, #064e3b 0%, #1f2937 100%);
        }

        .faq__item.active::before {
            transform: scaleX(1);
            background: linear-gradient(90deg, #10b981, #3b82f6, #f59e0b);
        }

        .faq__question {
            padding: 2rem 2.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq__question:hover {
            background: rgba(59, 130, 246, 0.05);
        }

        .faq__question h3 {
            font-weight: 600;
            color: #e5e7eb;
            margin: 0;
            font-size: 1.25rem;
            line-height: 1.4;
            background: linear-gradient(135deg, #e5e7eb, #9ca3af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        .faq__item:hover .faq__question h3 {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq__item.active .faq__question h3 {
            background: linear-gradient(135deg, #34d399, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq__icon {
            color: var(--premium-gold);
            font-size: 1.25rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            margin-left: 1.5rem;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(233, 181, 55, 0.1);
            border-radius: 50%;
        }

        .faq__item:hover .faq__icon {
            color: var(--luxury-gold);
            background: rgba(245, 199, 87, 0.2);
            transform: scale(1.1);
        }

        .faq__item.active .faq__icon {
            transform: rotate(180deg) scale(1.1);
            color: var(--luxury-gold);
            background: rgba(245, 199, 87, 0.2);
        }

        .faq__answer {
            padding: 0 2.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            opacity: 0;
        }

        .faq__item.active .faq__answer {
            padding: 1.5rem 2.5rem 2rem;
            max-height: 300px;
            opacity: 1;
        }

        .faq__answer p {
            color: #9ca3af;
            line-height: 1.7;
            margin: 0;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
            font-weight: 400;
        }

        .faq__sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: sticky;
            top: 2rem;
        }

        .faq__contact-card,
        .faq__resource-card {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
            color: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.3);
            border: 1px solid rgba(96, 165, 250, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .faq__resource-card {
            background: linear-gradient(135deg, #047857 0%, #10b981 50%, #34d399 100%);
            box-shadow: 0 10px 40px rgba(4, 120, 87, 0.3);
            border: 1px solid rgba(52, 211, 153, 0.2);
        }

        .faq__contact-card::before,
        .faq__resource-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: rotate 4s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .faq__contact-card:hover::before,
        .faq__resource-card:hover::before {
            opacity: 1;
        }

        .faq__contact-card:hover,
        .faq__resource-card:hover {
            transform: translateY(-5px) scale(1.02);
        }

        .faq__contact-icon,
        .faq__resource-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin: 0 auto 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .faq__contact-card:hover .faq__contact-icon,
        .faq__resource-card:hover .faq__resource-icon {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .faq__contact-card h3,
        .faq__resource-card h3 {
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
            font-size: 1.25rem;
            position: relative;
            z-index: 2;
        }

        .faq__contact-card p,
        .faq__resource-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .faq__contact-card .btn {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .faq__contact-card .btn:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .faq__resources {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            position: relative;
            z-index: 2;
        }

        .faq__resources li {
            margin-bottom: 0.75rem;
        }

        .faq__resources a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq__resources a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateX(5px);
        }

        .faq__resources i {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Mobile Responsive FAQ */
        @media (max-width: 768px) {
            .faq__content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .faq__question {
                padding: 1.5rem 2rem;
            }

            .faq__question h3 {
                font-size: 1.1rem;
            }

            .faq__answer {
                padding: 0 2rem;
            }

            .faq__item.active .faq__answer {
                padding: 0 2rem 1.5rem;
            }

            .faq__sidebar {
                position: static;
                order: -1;
            }

            .faq__contact-card,
            .faq__resource-card {
                padding: 2rem 1.5rem;
            }
        }

        .enterprise-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(233, 181, 55, 0.4);
            background: linear-gradient(135deg, var(--luxury-gold), var(--premium-gold), var(--primary-color));
        }

        .premium-results {
            background: linear-gradient(145deg, #1e293b, #334155);
            border: 2px solid #3b82f6;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .premium-metric {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            border: 1px solid #3b82f6;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .enterprise-value {
            color: #10b981;
            font-size: 2.5rem;
            font-weight: 900;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .enterprise-change {
            color: #10b981;
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #065f46, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .premium-item {
            background: rgba(233, 181, 55, 0.1);
            border: 1px solid rgba(233, 181, 55, 0.2);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 0.5rem;
        }

        .premium-item .breakdown-value {
            color: #E9B537;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .enterprise-projection {
            background: linear-gradient(135deg, #1e40af, #3730a3);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .enterprise-amount {
            color: #fbbf24;
            font-size: 3rem;
            font-weight: 900;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        }

        .premium-cta {
            background: linear-gradient(145deg, #374151, #4b5563);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 1px solid #6b7280;
        }

        .enterprise-cta-btn {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
            transition: all 0.3s ease;
        }

        .enterprise-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
        }

        .cta-subtext {
            color: #9ca3af;
            font-size: 0.9rem;
            font-style: italic;
            margin-top: 0.5rem;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper input {
            flex: 1;
            padding: 1rem 1.5rem;
            padding-left: 3rem;
            padding-right: 4rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .input-prefix {
            position: absolute;
            left: 1rem;
            color: #10b981;
            font-weight: 700;
            font-size: 1.1rem;
            z-index: 2;
        }

        .input-suffix {
            position: absolute;
            right: 1rem;
            color: #6b7280;
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 2;
        }

        /* Premium About Section Styles */
        .premium-highlight {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            border: 1px solid #3b82f6;
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .premium-highlight:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
            border-color: #60a5fa;
        }

        .premium-highlight i {
            color: #3b82f6;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .premium-highlight h4 {
            color: #f1f5f9;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .premium-highlight p {
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.6;
        }

        .about__credentials {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .credential-badge {
            background: linear-gradient(135deg, #1e40af, #3730a3);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
            transition: all 0.3s ease;
        }

        .credential-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
        }

        .credential-badge i {
            color: #fbbf24;
            font-size: 1rem;
        }

        .enterprise-cta {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
            transition: all 0.3s ease;
        }

        .enterprise-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
            background: linear-gradient(135deg, #b91c1c, #dc2626);
        }

        .premium-stats {
            background: linear-gradient(145deg, #0f172a, #1e293b);
            border: 2px solid #3b82f6;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .premium-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #60a5fa, #10b981, #3b82f6);
            background-size: 400% 100%;
            animation: gradientShift 3s ease infinite;
        }

        .stats__header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #374151;
        }

        .stats__header h4 {
            color: #3b82f6;
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .enterprise-stat {
            text-align: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(233, 181, 55, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(233, 181, 55, 0.2);
            transition: all 0.3s ease;
        }

        .enterprise-stat:hover {
            transform: scale(1.05);
            background: rgba(233, 181, 55, 0.2);
            border-color: rgba(233, 181, 55, 0.4);
        }

        .enterprise-stat .stats__number {
            color: #10b981;
            font-size: 2.5rem;
            font-weight: 900;
            display: block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .enterprise-stat .stats__label {
            color: #e2e8f0;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.5rem;
        }

        .about__achievement-badge {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #1e293b;
            padding: 1.5rem;
            border-radius: 16px;
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
            position: relative;
            overflow: hidden;
        }

        .about__achievement-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            animation: shine 3s ease-in-out infinite;
        }

        .premium-achievement {
            background: #1e293b;
            color: #fbbf24;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .achievement-text h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .achievement-text p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

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

        /* Premium Testimonials Section Styling */
        .testimonials {
            background: var(--bg-primary) !important;  /* Dark navy background instead of gold */
            padding: 5rem 0;
        }

        .testimonials__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
            padding-top: 2rem;  /* Add space for featured badge */
        }

        .testimonial__card {
            background: linear-gradient(145deg, #0f172a, #1e293b);
            border: 2px solid transparent;
            border-radius: 12px;  /* Cleaner, more consistent radius */
            padding: 2rem;
            position: relative;
            overflow: visible;  /* Changed from hidden to visible for badge */
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .testimonial__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--premium-gold), var(--luxury-gold), var(--primary-color), var(--premium-gold));
            background-size: 400% 400%;
            border-radius: 12px;  /* Match main card radius */
            z-index: -1;
            animation: gradientBorder 6s ease infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .testimonial__card:hover::before {
            opacity: 0.1;  /* Much more subtle glow instead of 1 */
        }

        .testimonial__card:hover {
            transform: translateY(-5px) scale(1.01);  /* Less dramatic movement */
            box-shadow: 0 15px 30px rgba(233, 181, 55, 0.08);  /* Much more subtle gold glow */
        }

        .testimonial__card--featured {
            border: 2px solid var(--premium-gold);
            background: linear-gradient(145deg, var(--executive-navy), var(--premium-navy));
            position: relative;
        }

        .testimonial__card--featured::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 4s ease-in-out infinite;
        }

        .testimonial__badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: linear-gradient(135deg, var(--premium-gold), var(--luxury-gold));
            color: var(--premium-navy);
            padding: 0.5rem 1.5rem;
            border-radius: 12px;  /* Match main card radius for consistency */
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 4px 15px rgba(233, 181, 55, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;  /* Ensure badge is above other elements */
        }

        .testimonial__content {
            margin-bottom: 2rem;
        }

        .testimonial__stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
            justify-content: center;
        }

        .testimonial__stars i {
            color: var(--premium-gold);
            font-size: 1.2rem;
            filter: drop-shadow(0 2px 4px rgba(233, 181, 55, 0.1));  /* Much more subtle shadow */
            animation: starGlow 2s ease-in-out infinite alternate;
        }

        .testimonial__stars i:nth-child(1) { animation-delay: 0s; }
        .testimonial__stars i:nth-child(2) { animation-delay: 0.1s; }
        .testimonial__stars i:nth-child(3) { animation-delay: 0.2s; }
        .testimonial__stars i:nth-child(4) { animation-delay: 0.3s; }
        .testimonial__stars i:nth-child(5) { animation-delay: 0.4s; }

        .testimonial__text {
            color: #e2e8f0;
            font-size: 1.1rem;
            line-height: 1.7;
            font-style: italic;
            position: relative;
            padding: 0 1rem;
        }

        .testimonial__text::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: -10px;
            font-size: 4rem;
            color: #3b82f6;
            font-family: Georgia, serif;
            opacity: 0.3;
        }

        .testimonial__text::after {
            content: '"';
            position: absolute;
            bottom: -30px;
            right: -10px;
            font-size: 4rem;
            color: #3b82f6;
            font-family: Georgia, serif;
            opacity: 0.3;
        }

        .testimonial__author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
        }

        .testimonial__avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #10b981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .testimonial__avatar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .testimonial__card:hover .testimonial__avatar::before {
            transform: translateX(100%);
        }

        .testimonial__details {
            flex: 1;
        }

        .testimonial__name {
            color: #f1f5f9;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .testimonial__position {
            color: #3b82f6;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .testimonial__company {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .testimonials__stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonials__stat {
            background: linear-gradient(145deg, #1e293b, #334155);
            border: 1px solid #3b82f6;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonials__stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
            background-size: 200% 100%;
            animation: gradientFlow 3s ease infinite;
        }

        .testimonials__stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
            border-color: #60a5fa;
        }

        .stat__icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .stat__icon i {
            color: white;
            font-size: 1.5rem;
        }

        .stat__number {
            color: #10b981;
            font-size: 2.5rem;
            font-weight: 900;
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .stat__label {
            color: #e2e8f0;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        @keyframes gradientBorder {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes starGlow {
            0% { transform: scale(1); opacity: 0.9; }
            100% { transform: scale(1.05); opacity: 0.7; }  /* Much more subtle scaling and opacity */
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .testimonials__grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial__card {
                padding: 1.5rem;
            }

            .testimonial__text {
                font-size: 1rem;
            }

            .testimonials__stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .testimonials__stat {
                padding: 1.5rem;
            }

            .stat__number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .testimonials__stats {
                grid-template-columns: 1fr;
            }
        }
