 .btn-group-custom {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        
        .btn-custom {
            display: inline-block;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-enquiry {
            background: #240000;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(36, 0, 0, 0.3);
        }
        
        .btn-details {
            background: #f19999;
            color: #333;
            box-shadow: 0 4px 15px rgba(241, 153, 153, 0.3);
        }
        
        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .btn-custom:active {
            transform: translateY(-1px);
        }

        /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            backdrop-filter: blur(8px);
        }
        
        /* Popup Box */
        .popup-box {
            background: #fff;
            width: 420px;
            max-width: 90%;
            padding: 0;
            border-radius: 20px;
            text-align: center;
            position: relative;
            animation: fadeInUp .4s ease;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
        .popup-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 30px 25px 25px;
            color: white;
            position: relative;
        }
        
        .popup-header h3 {
            margin-bottom: 8px;
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .popup-header p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            font-size: 15px;
        }
        
        .form-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .form-icon svg {
            width: 32px;
            height: 32px;
        }
        
        /* Close Button */
        .close-popup {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: white;
            font-weight: bold;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .close-popup:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .popup-body {
            padding: 30px;
        }
        
        /* Inputs */
        .input-group {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 14px;
            padding-left: 5px;
        }
        
        .popup-box input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #f1f3f6;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            color: #2c3e50;
        }
        
        .popup-box input:focus {
            border-color: #667eea;
            outline: none;
            background: white;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }
        
        .popup-box input::placeholder {
            color: #aab7c4;
        }
        
        /* Submit Button */
        .popup-box button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            margin-top: 10px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .popup-box button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        
        .popup-box button:active {
            transform: translateY(-1px);
        }
        
        .popup-box button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .popup-box button:hover::after {
            left: 100%;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
        
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @media (max-width: 480px) {
            .popup-box {
                width: 95%;
            }
        
            .btn-group-custom {
                flex-direction: column;
                align-items: center;
            }
        
            .btn-custom {
                width: 100%;
                max-width: 280px;
            }
        
            .popup-body {
                padding: 25px 20px;
            }
        }